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.
code
required
Currency code in URL
| Name | Required | Default | Description |
|---|---|---|---|
code |
Yes | - | Currency code in URL |
curl https://nordapi.ee/api/v1/currencies/EUR/countries
curl https://nordapi.ee/api/v1/currencies/EUR/countries
curl https://nordapi.ee/api/v1/currencies/USD/countries
curl https://nordapi.ee/api/v1/currencies/GBP/countries
{
"count": 0,
"currency": "EUR",
"data": [],
"success": true
}
{"success":true,"currency":"EUR","data":[{"code":"DE","name":"Germany"},{"code":"FR","name":"France"}],"count":20}