Euro foreign exchange reference rates (monthly averages)
Monthly averages of the ECB euro foreign exchange reference rates against 29 currencies. European Central Bank.
Source: European Central Bank12,315 lignesMis à jour: 21/09/2026
exchange-ratesforexeurofinance
Qualité
100
Attribution
European Central Bank statistics
Schéma
| Colonne | 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. |
Exemple de lignes
| date | series_id | series_label | value |
|---|---|---|---|
| 2000-01-01 | EXR.M.ARS.EUR.SP00.A | Argentine peso/Euro | 1.0047592307692 |
| 2000-02-01 | EXR.M.ARS.EUR.SP00.A | Argentine peso/Euro | 0.9829095238095 |
| 2000-03-01 | EXR.M.ARS.EUR.SP00.A | Argentine peso/Euro | 0.9644547826087 |
| 2000-04-01 | EXR.M.ARS.EUR.SP00.A | Argentine peso/Euro | 0.9467383333333 |
| 2000-05-01 | EXR.M.ARS.EUR.SP00.A | Argentine peso/Euro | 0.9053318181818 |
Utiliser avec un LLM
Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).
cURL
curl "https://datazimuts.com/v1/datasets/ecb/ecb_monthly_exchange_rates" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/ecb/ecb_monthly_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)Point d’accès API: https://datazimuts.com/v1/datasets/ecb/ecb_monthly_exchange_rates
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.