GET /timeseries
Get daily tasas de cambio for every day within a specified rango de fechas. Returns a map of dates to rate objects, perfect for plotting tasa de cambio charts and trend lines, performing series temporales analysis, or calculando moving averages. Supports filtrando by divisa base and target symbols to keep response sizes manageable over longer rango de fechass.
start_date
requerido
Start date
end_date
requerido
End date
base
opcional
Base currency
symbols
opcional
Target currencies
| Nombre | Requerido | Predeterminado | Descripcion |
|---|---|---|---|
start_date |
Si | - | Start date |
end_date |
Si | - | End date |
base |
No | - | Base currency |
symbols |
No | - | 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}}}