Tous les jeux de données

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

ColonneTypeDescription
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.

Exemple de lignes

dateseries_idseries_labelvalue
1993-01-01EXR.M.E01.EUR.ERC0.AEuro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated110.0215
1993-02-01EXR.M.E01.EUR.ERC0.AEuro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated109.3604
1993-03-01EXR.M.E01.EUR.ERC0.AEuro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated108.0291
1993-04-01EXR.M.E01.EUR.ERC0.AEuro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated108.4663
1993-05-01EXR.M.E01.EUR.ERC0.AEuro real effective exchange rate against narrow group of trading partners (EER-12), consumer prices indices deflated108.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.