Euro real effective exchange rate (CPI deflated)
Real effective exchange rate of the euro against a narrow group of 12 trading partners (EER-12), deflated by consumer price indices, published monthly. European Central Bank.
Source: European Central Bank404 lignesMis à jour: 21/09/2026
exchange-ratescompetitivenessinflationeurofinance
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 |
|---|---|---|---|
| 1993-01-01 | EXR.M.E01.EUR.ERC0.A | Euro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated | 110.0215 |
| 1993-02-01 | EXR.M.E01.EUR.ERC0.A | Euro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated | 109.3604 |
| 1993-03-01 | EXR.M.E01.EUR.ERC0.A | Euro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated | 108.0291 |
| 1993-04-01 | EXR.M.E01.EUR.ERC0.A | Euro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated | 108.4663 |
| 1993-05-01 | EXR.M.E01.EUR.ERC0.A | Euro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated | 108.0983 |
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_euro_reer" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/ecb/ecb_euro_reer").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_euro_reer
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.