All datasets

Euro foreign exchange reference rates (daily)

Daily ECB euro foreign exchange reference rates: the reference exchange rate of the euro against 29 currencies, published each working day. European Central Bank.

Source: European Central Bank265,146 rowsUpdated: 9/21/2026
exchange-ratesforexeurofinance

Quality

99.9

Attribution

European Central Bank statistics

Schema

ColumnTypeDescription
datestringObservation period (the TIME_PERIOD column of the ECB SDMX-CSV response). Daily series use YYYY-MM-DD; monthly series use YYYY-MM, stored as the first day of the month.
series_idstringSDMX series key (the KEY column), e.g. 'EXR.D.USD.EUR.SP00.A': the unique identifier of the series in the ECB Statistical Data Warehouse.
series_labelstringSeries title published by the ECB (the TITLE column of the SDMX-CSV response), e.g. 'US dollar/Euro ECB reference exchange rate'.
valuefloatObserved value for the series and period (the OBS_VALUE column). Units follow the series definition (exchange rates per euro; effective exchange rates in index points). Missing observations are null.

Sample rows

dateseries_idseries_labelvalue
2000-01-13EXR.D.ARS.EUR.SP00.AArgentine peso/Euro1.02745
2000-01-14EXR.D.ARS.EUR.SP00.AArgentine peso/Euro1.02232
2000-01-17EXR.D.ARS.EUR.SP00.AArgentine peso/Euro1.0087
2000-01-18EXR.D.ARS.EUR.SP00.AArgentine peso/Euro1.00915
2000-01-19EXR.D.ARS.EUR.SP00.AArgentine peso/Euro1.01034

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/ecb/ecb_daily_exchange_rates" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/ecb/ecb_daily_exchange_rates").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/ecb/ecb_daily_exchange_rates

Tip: fetch /llms.txt for the full machine-readable catalog.