GET /latest
Get today's exchange rates for any of the 30 supported base currencies against all other currencies or a filtered subset. Returns the rate date and a map of currency-to-rate pairs. Rates are updated daily from the European Central Bank (ECB). Ideal for currency converters, financial dashboards, pricing pages, and any app that needs current FX rates.
base
optional
default: EUR
Base currency code
symbols
optional
Comma-separated target currencies
| Name | Required | Default | Description |
|---|---|---|---|
base |
No | EUR | Base currency code |
symbols |
No | - | Comma-separated target currencies |
curl "https://nordapi.ee/api/v1/latest?base=USD&symbols=EUR,GBP,NOK"
curl "https://nordapi.ee/api/v1/latest"
curl "https://nordapi.ee/api/v1/latest?base=USD&symbols=NOK,SEK,DKK"
curl "https://nordapi.ee/api/v1/latest?base=GBP&symbols=USD,EUR,JPY,CHF"
{
"base": "USD",
"date": "2026-04-05",
"rates": {
"EUR": 0.86767896,
"GBP": 0.75707592,
"NOK": 9.74273319
},
"success": true
}
{"success":true,"base":"USD","date":"2026-03-24","rates":{"EUR":0.918,"GBP":0.791,"NOK":10.52}}