GET /timeseries
Obtenir daily taux de change for every day within a specified plage de dates. Renvoie a map of dates to rate objects, idéal pour plotting taux de change charts and trend lines, performing séries temporelles analysis, or calculating moving averages. Prend en charge filtering by base currency and tarobtenir symbols to keep response sizes manageable over longer plage de datess.
start_date
requis
Start date
end_date
requis
End date
base
optionnel
Base currency
symbols
optionnel
Target currencies
| Nom | Requis | Par défaut | Description |
|---|---|---|---|
start_date |
Oui | - | Start date |
end_date |
Oui | - | End date |
base |
Non | - | Base currency |
symbols |
Non | - | Target currencies |
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-03-01&end_date=2026-03-15&base=USD&symbols=EUR"
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-03-01&end_date=2026-03-15&base=USD&symbols=EUR"
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-02-01&end_date=2026-02-28&base=NOK&symbols=SEK,DKK"
curl "https://nordapi.ee/api/v1/timeseries?start_date=2026-03-17&end_date=2026-03-24&base=GBP"
HTTP 404: {
"error": "No rates available for this period",
"message": "Exchange rates are not available for the requested time period.",
"success": false
}
{"success":true,"base":"USD","rates":{"2026-03-01":{"EUR":0.92},"2026-03-02":{"EUR":0.918}}}