← Finance & Currency

Latest Exchange Rates

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.

Parameters

base optional default: EUR

Base currency code

symbols optional

Comma-separated target currencies

Example Requests

Basic usage
curl "https://nordapi.ee/api/v1/latest?base=USD&symbols=EUR,GBP,NOK"
All rates with EUR base (default)
curl "https://nordapi.ee/api/v1/latest"
USD base with Nordic currencies
curl "https://nordapi.ee/api/v1/latest?base=USD&symbols=NOK,SEK,DKK"
GBP base against major currencies
curl "https://nordapi.ee/api/v1/latest?base=GBP&symbols=USD,EUR,JPY,CHF"

Live Response

{
  "base": "USD",
  "date": "2026-04-05",
  "rates": {
    "EUR": 0.86767896,
    "GBP": 0.75707592,
    "NOK": 9.74273319
  },
  "success": true
}

Example Response

{"success":true,"base":"USD","date":"2026-03-24","rates":{"EUR":0.918,"GBP":0.791,"NOK":10.52}}