โ† Finance & Currency

Country Detail

GET /countries/:code

Look up detailed currency information for a specific country by its ISO country code. Returns the country name, currency code, geographic region, and flag emoji. Useful when you know the country and need to determine its currency for conversion or display purposes, such as auto-detecting a user's currency from their country setting.

Parameters

code required

ISO country code in URL

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/countries/NO
Norway country detail
curl https://nordapi.ee/api/v1/countries/NO
United States country detail
curl https://nordapi.ee/api/v1/countries/US
Japan country detail
curl https://nordapi.ee/api/v1/countries/JP

Live Response

{
  "data": {
    "code": "NO",
    "currency": "NOK",
    "flag": "๐Ÿ‡ณ๐Ÿ‡ด",
    "name": "Norway",
    "region": "Europe"
  },
  "success": true
}

Example Response

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