Skip to content
Last updated
GET/v1/reference/timezones

Get all active timezones from the IANA timezone database.

Returns a list of timezones ordered by display order and name, useful for user profile timezone selection, scheduling features, and time conversion utilities.

Returns an array of timezone objects with IANA timezone names, display names, UTC offset information, and country code associations.

cURL
curl https://api.aitronos.com/v1/reference/timezones \
  -H "X-API-Key: $FREDDY_API_KEY"

Response

[
  {
    "id": "America/New_York",
    "name": "America/New_York",
    "display_name": "Eastern Time (US & Canada)",
    "utc_offset": "-05:00",
    "country_code": "US"
  },
  {
    "id": "Europe/London",
    "name": "Europe/London",
    "display_name": "London",
    "utc_offset": "+00:00",
    "country_code": "GB"
  }
]