Prayer Times

ByAddress

calendarByAddressGet

Get a prayer times calendar for a month by address


/calendarByAddress

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/aladhan/calendarByAddress?Address=&month=&year=&method=&school=&latitudeAdjustmentMethod="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ByAddressApi;

import java.io.File;
import java.util.*;

public class ByAddressApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        ByAddressApi apiInstance = new ByAddressApi();
        BigDecimal apiecoKey = 8.14; // BigDecimal | 
        String address = address_example; // String | 
        String month = month_example; // String | Month number - 1 to 12
        String year = year_example; // String | 4 digit value for the year. Example: 2016
        String method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
        String school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
        String latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
        try {
            timing result = apiInstance.calendarByAddressGet(apiecoKey, address, month, year, method, school, latitudeAdjustmentMethod);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ByAddressApi#calendarByAddressGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ByAddressApi;

public class ByAddressApiExample {

    public static void main(String[] args) {
        ByAddressApi apiInstance = new ByAddressApi();
        BigDecimal apiecoKey = 8.14; // BigDecimal | 
        String address = address_example; // String | 
        String month = month_example; // String | Month number - 1 to 12
        String year = year_example; // String | 4 digit value for the year. Example: 2016
        String method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
        String school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
        String latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
        try {
            timing result = apiInstance.calendarByAddressGet(apiecoKey, address, month, year, method, school, latitudeAdjustmentMethod);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ByAddressApi#calendarByAddressGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

BigDecimal *apiecoKey = 8.14; // 
String *address = address_example; // 
String *month = month_example; // Month number - 1 to 12
String *year = year_example; // 4 digit value for the year. Example: 2016
String *method = method_example; // Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional)
String *school = school_example; // 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional)
String *latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional)

ByAddressApi *apiInstance = [[ByAddressApi alloc] init];

//  Get a prayer times calendar for a month by address



[apiInstance calendarByAddressGetWith:apiecoKey
    address:address
    month:month
    year:year
    method:method
    school:school
    latitudeAdjustmentMethod:latitudeAdjustmentMethod
              completionHandler: ^(timing output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var PrayerTimes = require('prayer_times');
var defaultClient = PrayerTimes.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new PrayerTimes.ByAddressApi()

var apiecoKey = 8.14; // {BigDecimal} 

var address = address_example; // {String} 

var month = month_example; // {String} Month number - 1 to 12

var year = year_example; // {String} 4 digit value for the year. Example: 2016

var opts = { 
  'method': method_example, // {String} Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
  'school': school_example, // {String} 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
  'latitudeAdjustmentMethod': latitudeAdjustmentMethod_example // {String} Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.calendarByAddressGet(apiecoKey, address, month, year, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class calendarByAddressGetExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new ByAddressApi();
            var apiecoKey = 8.14;  // BigDecimal | 
            var address = address_example;  // String | 
            var month = month_example;  // String | Month number - 1 to 12
            var year = year_example;  // String | 4 digit value for the year. Example: 2016
            var method = method_example;  // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional) 
            var school = school_example;  // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional) 
            var latitudeAdjustmentMethod = latitudeAdjustmentMethod_example;  // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional) 

            try
            {
                //  Get a prayer times calendar for a month by address



                timing result = apiInstance.calendarByAddressGet(apiecoKey, address, month, year, method, school, latitudeAdjustmentMethod);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ByAddressApi.calendarByAddressGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\ByAddressApi();
$apiecoKey = 8.14; // BigDecimal | 
$address = address_example; // String | 
$month = month_example; // String | Month number - 1 to 12
$year = year_example; // String | 4 digit value for the year. Example: 2016
$method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
$school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
$latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

try {
    $result = $api_instance->calendarByAddressGet($apiecoKey, $address, $month, $year, $method, $school, $latitudeAdjustmentMethod);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ByAddressApi->calendarByAddressGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ByAddressApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::ByAddressApi->new();
my $apiecoKey = 8.14; # BigDecimal | 
my $address = address_example; # String | 
my $month = month_example; # String | Month number - 1 to 12
my $year = year_example; # String | 4 digit value for the year. Example: 2016
my $method = method_example; # String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
my $school = school_example; # String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
my $latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; # String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

eval { 
    my $result = $api_instance->calendarByAddressGet(apiecoKey => $apiecoKey, address => $address, month => $month, year => $year, method => $method, school => $school, latitudeAdjustmentMethod => $latitudeAdjustmentMethod);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ByAddressApi->calendarByAddressGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.ByAddressApi()
apiecoKey = 8.14 # BigDecimal | 
address = address_example # String | 
month = month_example # String | Month number - 1 to 12
year = year_example # String | 4 digit value for the year. Example: 2016
method = method_example # String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional)
school = school_example # String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional)
latitudeAdjustmentMethod = latitudeAdjustmentMethod_example # String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional)

try: 
    #  Get a prayer times calendar for a month by address



    api_response = api_instance.calendar_by_address_get(apiecoKey, address, month, year, method=method, school=school, latitudeAdjustmentMethod=latitudeAdjustmentMethod)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ByAddressApi->calendarByAddressGet: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
BigDecimal
Required
Query parameters
Name Description
Address*
String
Required
month*
String
Month number - 1 to 12
Required
year*
String
4 digit value for the year. Example: 2016
Required
method
String
Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
school
String
1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
latitudeAdjustmentMethod
String
Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


timingsByAddressGet

Get prayer times by address


/timingsByAddress

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/aladhan/timingsByAddress?address=&method=&school=&latitudeAdjustmentMethod="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ByAddressApi;

import java.io.File;
import java.util.*;

public class ByAddressApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        ByAddressApi apiInstance = new ByAddressApi();
        BigDecimal apiecoKey = 8.14; // BigDecimal | 
        String address = address_example; // String | A city name, like Denver
        String method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
        String school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
        String latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
        try {
            timing result = apiInstance.timingsByAddressGet(apiecoKey, address, method, school, latitudeAdjustmentMethod);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ByAddressApi#timingsByAddressGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ByAddressApi;

public class ByAddressApiExample {

    public static void main(String[] args) {
        ByAddressApi apiInstance = new ByAddressApi();
        BigDecimal apiecoKey = 8.14; // BigDecimal | 
        String address = address_example; // String | A city name, like Denver
        String method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
        String school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
        String latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
        try {
            timing result = apiInstance.timingsByAddressGet(apiecoKey, address, method, school, latitudeAdjustmentMethod);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ByAddressApi#timingsByAddressGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

BigDecimal *apiecoKey = 8.14; // 
String *address = address_example; // A city name, like Denver
String *method = method_example; // Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional)
String *school = school_example; // 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional)
String *latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional)

ByAddressApi *apiInstance = [[ByAddressApi alloc] init];

//  Get prayer times by address



[apiInstance timingsByAddressGetWith:apiecoKey
    address:address
    method:method
    school:school
    latitudeAdjustmentMethod:latitudeAdjustmentMethod
              completionHandler: ^(timing output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var PrayerTimes = require('prayer_times');
var defaultClient = PrayerTimes.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new PrayerTimes.ByAddressApi()

var apiecoKey = 8.14; // {BigDecimal} 

var address = address_example; // {String} A city name, like Denver

var opts = { 
  'method': method_example, // {String} Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
  'school': school_example, // {String} 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
  'latitudeAdjustmentMethod': latitudeAdjustmentMethod_example // {String} Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.timingsByAddressGet(apiecoKey, address, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class timingsByAddressGetExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new ByAddressApi();
            var apiecoKey = 8.14;  // BigDecimal | 
            var address = address_example;  // String | A city name, like Denver
            var method = method_example;  // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional) 
            var school = school_example;  // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional) 
            var latitudeAdjustmentMethod = latitudeAdjustmentMethod_example;  // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional) 

            try
            {
                //  Get prayer times by address



                timing result = apiInstance.timingsByAddressGet(apiecoKey, address, method, school, latitudeAdjustmentMethod);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ByAddressApi.timingsByAddressGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\ByAddressApi();
$apiecoKey = 8.14; // BigDecimal | 
$address = address_example; // String | A city name, like Denver
$method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
$school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
$latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

try {
    $result = $api_instance->timingsByAddressGet($apiecoKey, $address, $method, $school, $latitudeAdjustmentMethod);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ByAddressApi->timingsByAddressGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ByAddressApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::ByAddressApi->new();
my $apiecoKey = 8.14; # BigDecimal | 
my $address = address_example; # String | A city name, like Denver
my $method = method_example; # String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
my $school = school_example; # String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
my $latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; # String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

eval { 
    my $result = $api_instance->timingsByAddressGet(apiecoKey => $apiecoKey, address => $address, method => $method, school => $school, latitudeAdjustmentMethod => $latitudeAdjustmentMethod);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ByAddressApi->timingsByAddressGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.ByAddressApi()
apiecoKey = 8.14 # BigDecimal | 
address = address_example # String | A city name, like Denver
method = method_example # String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional)
school = school_example # String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional)
latitudeAdjustmentMethod = latitudeAdjustmentMethod_example # String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional)

try: 
    #  Get prayer times by address



    api_response = api_instance.timings_by_address_get(apiecoKey, address, method=method, school=school, latitudeAdjustmentMethod=latitudeAdjustmentMethod)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ByAddressApi->timingsByAddressGet: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
BigDecimal
Required
Query parameters
Name Description
address*
String
A city name, like Denver
Required
method
String
Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
school
String
1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
latitudeAdjustmentMethod
String
Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


ByCity

calendarByCityGet

Get Prayer Times for a given day by city and country


/calendarByCity

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/aladhan/calendarByCity?city=&country=&month=&year=&state=&method=&school=&latitudeAdjustmentMethod="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ByCityApi;

import java.io.File;
import java.util.*;

public class ByCityApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        ByCityApi apiInstance = new ByCityApi();
        BigDecimal apiecoKey = 8.14; // BigDecimal | 
        String city = city_example; // String | A city name, like Denver
        String country = country_example; // String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
        String month = month_example; // String | Month number - 1 to 12
        String year = year_example; // String | 4 digit value for the year. Example: 2016
        String state = state_example; // String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
        String method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
        String school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
        String latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
        try {
            timing result = apiInstance.calendarByCityGet(apiecoKey, city, country, month, year, state, method, school, latitudeAdjustmentMethod);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ByCityApi#calendarByCityGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ByCityApi;

public class ByCityApiExample {

    public static void main(String[] args) {
        ByCityApi apiInstance = new ByCityApi();
        BigDecimal apiecoKey = 8.14; // BigDecimal | 
        String city = city_example; // String | A city name, like Denver
        String country = country_example; // String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
        String month = month_example; // String | Month number - 1 to 12
        String year = year_example; // String | 4 digit value for the year. Example: 2016
        String state = state_example; // String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
        String method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
        String school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
        String latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
        try {
            timing result = apiInstance.calendarByCityGet(apiecoKey, city, country, month, year, state, method, school, latitudeAdjustmentMethod);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ByCityApi#calendarByCityGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

BigDecimal *apiecoKey = 8.14; // 
String *city = city_example; // A city name, like Denver
String *country = country_example; // A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
String *month = month_example; // Month number - 1 to 12
String *year = year_example; // 4 digit value for the year. Example: 2016
String *state = state_example; // A US state name or 2 letter abbreviation, like 'Colorado' or 'CO' (optional)
String *method = method_example; // Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional)
String *school = school_example; // 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional)
String *latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional)

ByCityApi *apiInstance = [[ByCityApi alloc] init];

//  Get Prayer Times for a given day by city and country



[apiInstance calendarByCityGetWith:apiecoKey
    city:city
    country:country
    month:month
    year:year
    state:state
    method:method
    school:school
    latitudeAdjustmentMethod:latitudeAdjustmentMethod
              completionHandler: ^(timing output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var PrayerTimes = require('prayer_times');
var defaultClient = PrayerTimes.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new PrayerTimes.ByCityApi()

var apiecoKey = 8.14; // {BigDecimal} 

var city = city_example; // {String} A city name, like Denver

var country = country_example; // {String} A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'

var month = month_example; // {String} Month number - 1 to 12

var year = year_example; // {String} 4 digit value for the year. Example: 2016

var opts = { 
  'state': state_example, // {String} A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
  'method': method_example, // {String} Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
  'school': school_example, // {String} 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
  'latitudeAdjustmentMethod': latitudeAdjustmentMethod_example // {String} Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.calendarByCityGet(apiecoKey, city, country, month, year, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class calendarByCityGetExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new ByCityApi();
            var apiecoKey = 8.14;  // BigDecimal | 
            var city = city_example;  // String | A city name, like Denver
            var country = country_example;  // String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
            var month = month_example;  // String | Month number - 1 to 12
            var year = year_example;  // String | 4 digit value for the year. Example: 2016
            var state = state_example;  // String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO' (optional) 
            var method = method_example;  // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional) 
            var school = school_example;  // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional) 
            var latitudeAdjustmentMethod = latitudeAdjustmentMethod_example;  // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional) 

            try
            {
                //  Get Prayer Times for a given day by city and country



                timing result = apiInstance.calendarByCityGet(apiecoKey, city, country, month, year, state, method, school, latitudeAdjustmentMethod);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ByCityApi.calendarByCityGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\ByCityApi();
$apiecoKey = 8.14; // BigDecimal | 
$city = city_example; // String | A city name, like Denver
$country = country_example; // String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
$month = month_example; // String | Month number - 1 to 12
$year = year_example; // String | 4 digit value for the year. Example: 2016
$state = state_example; // String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
$method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
$school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
$latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

try {
    $result = $api_instance->calendarByCityGet($apiecoKey, $city, $country, $month, $year, $state, $method, $school, $latitudeAdjustmentMethod);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ByCityApi->calendarByCityGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ByCityApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::ByCityApi->new();
my $apiecoKey = 8.14; # BigDecimal | 
my $city = city_example; # String | A city name, like Denver
my $country = country_example; # String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
my $month = month_example; # String | Month number - 1 to 12
my $year = year_example; # String | 4 digit value for the year. Example: 2016
my $state = state_example; # String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
my $method = method_example; # String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
my $school = school_example; # String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
my $latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; # String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

eval { 
    my $result = $api_instance->calendarByCityGet(apiecoKey => $apiecoKey, city => $city, country => $country, month => $month, year => $year, state => $state, method => $method, school => $school, latitudeAdjustmentMethod => $latitudeAdjustmentMethod);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ByCityApi->calendarByCityGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.ByCityApi()
apiecoKey = 8.14 # BigDecimal | 
city = city_example # String | A city name, like Denver
country = country_example # String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
month = month_example # String | Month number - 1 to 12
year = year_example # String | 4 digit value for the year. Example: 2016
state = state_example # String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO' (optional)
method = method_example # String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional)
school = school_example # String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional)
latitudeAdjustmentMethod = latitudeAdjustmentMethod_example # String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional)

try: 
    #  Get Prayer Times for a given day by city and country



    api_response = api_instance.calendar_by_city_get(apiecoKey, city, country, month, year, state=state, method=method, school=school, latitudeAdjustmentMethod=latitudeAdjustmentMethod)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ByCityApi->calendarByCityGet: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
BigDecimal
Required
Query parameters
Name Description
city*
String
A city name, like Denver
Required
country*
String
A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
Required
month*
String
Month number - 1 to 12
Required
year*
String
4 digit value for the year. Example: 2016
Required
state
String
A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
method
String
Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
school
String
1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
latitudeAdjustmentMethod
String
Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input


timingsByCityGet

Get Prayer Times for a given day by city and country


/timingsByCity

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/aladhan/timingsByCity?city=&country=&state=&method=&school=&latitudeAdjustmentMethod="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.ByCityApi;

import java.io.File;
import java.util.*;

public class ByCityApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        ByCityApi apiInstance = new ByCityApi();
        BigDecimal apiecoKey = 8.14; // BigDecimal | 
        String city = city_example; // String | A city name, like Denver
        String country = country_example; // String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
        String state = state_example; // String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
        String method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
        String school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
        String latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
        try {
            timing result = apiInstance.timingsByCityGet(apiecoKey, city, country, state, method, school, latitudeAdjustmentMethod);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ByCityApi#timingsByCityGet");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.ByCityApi;

public class ByCityApiExample {

    public static void main(String[] args) {
        ByCityApi apiInstance = new ByCityApi();
        BigDecimal apiecoKey = 8.14; // BigDecimal | 
        String city = city_example; // String | A city name, like Denver
        String country = country_example; // String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
        String state = state_example; // String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
        String method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
        String school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
        String latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
        try {
            timing result = apiInstance.timingsByCityGet(apiecoKey, city, country, state, method, school, latitudeAdjustmentMethod);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling ByCityApi#timingsByCityGet");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

BigDecimal *apiecoKey = 8.14; // 
String *city = city_example; // A city name, like Denver
String *country = country_example; // A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
String *state = state_example; // A US state name or 2 letter abbreviation, like 'Colorado' or 'CO' (optional)
String *method = method_example; // Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional)
String *school = school_example; // 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional)
String *latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional)

ByCityApi *apiInstance = [[ByCityApi alloc] init];

//  Get Prayer Times for a given day by city and country



[apiInstance timingsByCityGetWith:apiecoKey
    city:city
    country:country
    state:state
    method:method
    school:school
    latitudeAdjustmentMethod:latitudeAdjustmentMethod
              completionHandler: ^(timing output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var PrayerTimes = require('prayer_times');
var defaultClient = PrayerTimes.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new PrayerTimes.ByCityApi()

var apiecoKey = 8.14; // {BigDecimal} 

var city = city_example; // {String} A city name, like Denver

var country = country_example; // {String} A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'

var opts = { 
  'state': state_example, // {String} A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
  'method': method_example, // {String} Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
  'school': school_example, // {String} 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
  'latitudeAdjustmentMethod': latitudeAdjustmentMethod_example // {String} Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.timingsByCityGet(apiecoKey, city, country, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class timingsByCityGetExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new ByCityApi();
            var apiecoKey = 8.14;  // BigDecimal | 
            var city = city_example;  // String | A city name, like Denver
            var country = country_example;  // String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
            var state = state_example;  // String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO' (optional) 
            var method = method_example;  // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional) 
            var school = school_example;  // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional) 
            var latitudeAdjustmentMethod = latitudeAdjustmentMethod_example;  // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional) 

            try
            {
                //  Get Prayer Times for a given day by city and country



                timing result = apiInstance.timingsByCityGet(apiecoKey, city, country, state, method, school, latitudeAdjustmentMethod);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling ByCityApi.timingsByCityGet: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\ByCityApi();
$apiecoKey = 8.14; // BigDecimal | 
$city = city_example; // String | A city name, like Denver
$country = country_example; // String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
$state = state_example; // String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
$method = method_example; // String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
$school = school_example; // String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
$latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; // String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

try {
    $result = $api_instance->timingsByCityGet($apiecoKey, $city, $country, $state, $method, $school, $latitudeAdjustmentMethod);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling ByCityApi->timingsByCityGet: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::ByCityApi;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::ByCityApi->new();
my $apiecoKey = 8.14; # BigDecimal | 
my $city = city_example; # String | A city name, like Denver
my $country = country_example; # String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
my $state = state_example; # String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
my $method = method_example; # String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
my $school = school_example; # String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
my $latitudeAdjustmentMethod = latitudeAdjustmentMethod_example; # String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

eval { 
    my $result = $api_instance->timingsByCityGet(apiecoKey => $apiecoKey, city => $city, country => $country, state => $state, method => $method, school => $school, latitudeAdjustmentMethod => $latitudeAdjustmentMethod);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling ByCityApi->timingsByCityGet: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.ByCityApi()
apiecoKey = 8.14 # BigDecimal | 
city = city_example # String | A city name, like Denver
country = country_example # String | A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
state = state_example # String | A US state name or 2 letter abbreviation, like 'Colorado' or 'CO' (optional)
method = method_example # String | Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods (optional)
school = school_example # String | 1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc. (optional)
latitudeAdjustmentMethod = latitudeAdjustmentMethod_example # String | Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based (optional)

try: 
    #  Get Prayer Times for a given day by city and country



    api_response = api_instance.timings_by_city_get(apiecoKey, city, country, state=state, method=method, school=school, latitudeAdjustmentMethod=latitudeAdjustmentMethod)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling ByCityApi->timingsByCityGet: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
BigDecimal
Required
Query parameters
Name Description
city*
String
A city name, like Denver
Required
country*
String
A country name or ISO 2 digit aplha code, like 'US' or 'United States of America'
Required
state
String
A US state name or 2 letter abbreviation, like 'Colorado' or 'CO'
method
String
Any of the prayer time calculation methods specified on https://aladhan.com/calculation-methods
school
String
1 for Hanfi. 0 for all others, including, Shafi, Hanbali, etc.
latitudeAdjustmentMethod
String
Method for adjusting times higher latitudes - for instance, if you are checking timings in the UK or Sweden. 1 - Middle of the Night 2 - One Seventh 3 - Angle Based

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input