OECD Economic Outlook: consumer price index
Consumer price index (OECD measure CPI: "Consumer price index"), for OECD members, G20 non-members and major aggregates. Includes the Outlook's two-year projections. Unit: index (UNIT_MEASURE=IX).
Source: OECD1,696 lignesMis à jour: 21/09/2026
inflationcpipricesmacrooecdforecast
Qualité
92.5
Attribution
OECD
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | string | Observation year (the TIME_PERIOD column of the OECD SDMX-CSV response), stored as the first day of the year. |
| series_id | string | SDMX series key (<REF_AREA>.<MEASURE>), e.g. 'USA.GDPV_ANNPCT': the unique identifier of the series in the OECD Economic Outlook dataflow. |
| series_label | string | Economy name from the OECD CL_AREA codelist, e.g. 'United States'. |
| value | float | Consumer price index (OECD measure CPI: "Consumer price index"), for OECD members, G20 non-members and major aggregates. Includes the Outlook's two-year projections. Unit: index (UNIT_MEASURE=IX). |
Exemple de lignes
| date | series_id | series_label | value |
|---|---|---|---|
| 1960-01-01 | ARG.CPI | Argentina | 4.699619629519369e-13 |
| 1961-01-01 | ARG.CPI | Argentina | 5.34459205630246e-13 |
| 1962-01-01 | ARG.CPI | Argentina | 6.74095818957536e-13 |
| 1963-01-01 | ARG.CPI | Argentina | 8.49190396234751e-13 |
| 1964-01-01 | ARG.CPI | Argentina | 1.03723844420453e-12 |
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/oecd/consumer_price_index_annual" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/oecd/consumer_price_index_annual").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/oecd/consumer_price_index_annual
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.