div strong 🔨 In Development — This section is still being developed and may change. 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 Returns an array of timezone objects with IANA timezone names, display names, UTC offset information, and country code associations. ```bash cURL curl https://api.aitronos.com/v1/reference/timezones \ -H "X-API-Key: $FREDDY_API_KEY" ``` ```python Python import os import requests api_key = os.environ["FREDDY_API_KEY"] response = requests.get( "https://api.aitronos.com/v1/reference/timezones", headers={"X-API-Key": api_key} ) timezones = response.json() ``` ```javascript JavaScript const apiKey = process.env.FREDDY_API_KEY; const response = await fetch( 'https://api.aitronos.com/v1/reference/timezones', { headers: { 'X-API-Key': apiKey } } ); const timezones = await response.json(); ``` ## Response ```json [ { "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" } ] ```