div strong πŸ”¨ In Development β€” This section is still being developed and may change. Get all active countries with ISO codes, currency information, phone codes, and geographic data. Returns a comprehensive list useful for user profile country selection, address forms, phone number validation, currency selection, and geographic filtering. ## Returns Returns an array of country objects with ISO 3166-1 alpha-2 and alpha-3 codes, official and native names, currency information, international dialing codes, flag emojis, and geographic coordinates. ```bash cURL curl https://api.aitronos.com/v1/reference/countries \ -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/countries", headers={"X-API-Key": api_key} ) countries = response.json() ``` ```javascript JavaScript const apiKey = process.env.FREDDY_API_KEY; const response = await fetch( 'https://api.aitronos.com/v1/reference/countries', { headers: { 'X-API-Key': apiKey } } ); const countries = await response.json(); ``` ## Response ```json [ { "id": "US", "iso2": "US", "iso3": "USA", "name": "United States", "native_name": "United States", "currency_code": "USD", "currency_name": "US Dollar", "currency_symbol": "$", "phone_code": "+1", "flag": "πŸ‡ΊπŸ‡Έ", "latitude": 37.09024, "longitude": -95.712891, "region": "Americas" }, { "id": "GB", "iso2": "GB", "iso3": "GBR", "name": "United Kingdom", "native_name": "United Kingdom", "currency_code": "GBP", "currency_name": "British Pound", "currency_symbol": "Β£", "phone_code": "+44", "flag": "πŸ‡¬πŸ‡§", "latitude": 55.378051, "longitude": -3.435973, "region": "Europe" } ] ```