Get country timezones

GET /countries/{countryCode}/timezones

Get all timezones for a country

Path parameters

  • countryCode string Required

    ISO-3166 Alpha2 or Alpha3 code for country

Responses

  • 200 application/json

    List of timezones used by specified country.

    Hide response attributes Show response attributes object
  • Country not found

  • No or empty country/query specified

  • API key is missing or invalid

  • [FREE PLANS ONLY] Request Quota Exceeded

GET /countries/{countryCode}/timezones
curl \
 -X GET https://api.tellusdb.com/v1/countries/US/timezones?token=api_token_value
Response examples (200)
{
  "result": [
    {
      "name": "Europe/London",
      "abbreviation": "GMT"
    }
  ],
  "count": 1,
  "time_taken_ms": 1.3892211
}