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
| Column | Type | Description |
|---|---|---|
| date | string | Observation 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_id | string | SDMX 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_label | string | Series title published by the ECB (the TITLE column of the SDMX-CSV response), e.g. 'US dollar/Euro ECB reference exchange rate'. |
| value | float | Observed 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
| date | series_id | series_label | value |
|---|---|---|---|
| 2000-01-13 | EXR.D.ARS.EUR.SP00.A | Argentine peso/Euro | 1.02745 |
| 2000-01-14 | EXR.D.ARS.EUR.SP00.A | Argentine peso/Euro | 1.02232 |
| 2000-01-17 | EXR.D.ARS.EUR.SP00.A | Argentine peso/Euro | 1.0087 |
| 2000-01-18 | EXR.D.ARS.EUR.SP00.A | Argentine peso/Euro | 1.00915 |
| 2000-01-19 | EXR.D.ARS.EUR.SP00.A | Argentine peso/Euro | 1.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.