← Finance & Currency

List Countries

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.

Parameters

region optional

Filter by region

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/countries
All countries (no filter)
curl "https://nordapi.ee/api/v1/countries"
European countries only
curl "https://nordapi.ee/api/v1/countries?region=Europe"
Asian countries only
curl "https://nordapi.ee/api/v1/countries?region=Asia"

Live Response

{
  "count": 0,
  "data": [],
  "success": true
}

Example Response

{"success":true,"data":[{"code":"NO","name":"Norway","currency":"NOK","region":"Europe","flag":"\u{1f1f3}\u{1f1f4}"}],"count":49}