Consumer price index (all items), monthly
Statistics Norway's consumer price index, all-item index (2025=100), monthly from March 1920. Norway's headline inflation measure. Source: StatBank table 14710.
cpiinflationpricesnorwayheadline
Quality
100
Attribution
Statistics Norway
Schema
| Column | Type | Description |
|---|---|---|
| date | timestamp | Start of the observation period (SSB StatBank dimension Tid: month for monthly tables, year for annual tables). |
| series_id | string | Stable row key: the SSB StatBank dimension codes for this observation, joined by '.'. |
| series_label | string | Human-readable label: the SSB StatBank dimension value texts for this observation, joined by ' — '. |
| contents | string | SSB StatBank dimension 'contents'. Provider code values include: KpiIndMnd: Consumer Price Index. |
| contents_name | string | Statistics Norway's value text for the 'contents' dimension code. |
| value | float | Measured value. Definition and unit depend on the series — see the 'contents' / 'contents_name' dimension, whose value texts are Statistics Norway's own (e.g. 'Consumer Price Index', '12-month rate (per cent)', 'Unemployment rate (LFS)', 'Persons'). |
Sample rows
| date | series_id | series_label | contents | contents_name | value |
|---|---|---|---|---|---|
| 1920-03-01T00:00:00 | KpiIndMnd | Consumer Price Index | KpiIndMnd | Consumer Price Index | 3.7 |
| 1920-04-01T00:00:00 | KpiIndMnd | Consumer Price Index | KpiIndMnd | Consumer Price Index | 3.8 |
| 1920-05-01T00:00:00 | KpiIndMnd | Consumer Price Index | KpiIndMnd | Consumer Price Index | 3.8 |
| 1920-06-01T00:00:00 | KpiIndMnd | Consumer Price Index | KpiIndMnd | Consumer Price Index | 3.9 |
| 1920-07-01T00:00:00 | KpiIndMnd | Consumer Price Index | KpiIndMnd | Consumer Price Index | 4 |
Download sample data
Download the full sample snapshot for this dataset (sample rows, not the complete dataset).
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/ssb/consumer_price_index" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/ssb/consumer_price_index").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/ssb/consumer_price_index
Tip: fetch /llms.txt for the full machine-readable catalog.