← Finance & Currency

Countries by Currency

GET /currencies/:code/countries

Find all countries that use a specific currency. For example, querying EUR returns all 20 Eurozone nations. Returns country codes and names for each match. Useful for understanding the geographic reach of a currency, building educational tools, or determining which countries are affected when a particular currency fluctuates.

Parameters

code required

Currency code in URL

Example Requests

Basic usage
curl https://nordapi.ee/api/v1/currencies/EUR/countries
Countries using the Euro
curl https://nordapi.ee/api/v1/currencies/EUR/countries
Countries using USD
curl https://nordapi.ee/api/v1/currencies/USD/countries
Countries using GBP
curl https://nordapi.ee/api/v1/currencies/GBP/countries

Live Response

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

Example Response

{"success":true,"currency":"EUR","data":[{"code":"DE","name":"Germany"},{"code":"FR","name":"France"}],"count":20}