GET /countries
Get all 49 countries supported by the currency system, each with their ISO country code, full name, official currency code, geographic region, and flag emoji. Optionally filter by region (e.g., Europe, Asia). Useful for building country selectors in currency apps, mapping which countries use which currencies, and populating geo-filtered dropdowns.
region
optional
Filter by region
| Name | Required | Default | Description |
|---|---|---|---|
region |
No | - | Filter by region |
curl https://nordapi.ee/api/v1/countries
curl "https://nordapi.ee/api/v1/countries"
curl "https://nordapi.ee/api/v1/countries?region=Europe"
curl "https://nordapi.ee/api/v1/countries?region=Asia"
{
"count": 0,
"data": [],
"success": true
}
{"success":true,"data":[{"code":"NO","name":"Norway","currency":"NOK","region":"Europe","flag":"\u{1f1f3}\u{1f1f4}"}],"count":49}