All datasets

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.

Source: Statistics Norway (StatBank)1,278 rowsUpdated: 9/22/2026License: CC-BY-4.0
cpiinflationpricesnorwayheadline

Quality

100

Attribution

Statistics Norway

Schema

ColumnTypeDescription
datetimestampStart of the observation period (SSB StatBank dimension Tid: month for monthly tables, year for annual tables).
series_idstringStable row key: the SSB StatBank dimension codes for this observation, joined by '.'.
series_labelstringHuman-readable label: the SSB StatBank dimension value texts for this observation, joined by ' — '.
contentsstringSSB StatBank dimension 'contents'. Provider code values include: KpiIndMnd: Consumer Price Index.
contents_namestringStatistics Norway's value text for the 'contents' dimension code.
valuefloatMeasured 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

dateseries_idseries_labelcontentscontents_namevalue
1920-03-01T00:00:00KpiIndMndConsumer Price IndexKpiIndMndConsumer Price Index3.7
1920-04-01T00:00:00KpiIndMndConsumer Price IndexKpiIndMndConsumer Price Index3.8
1920-05-01T00:00:00KpiIndMndConsumer Price IndexKpiIndMndConsumer Price Index3.8
1920-06-01T00:00:00KpiIndMndConsumer Price IndexKpiIndMndConsumer Price Index3.9
1920-07-01T00:00:00KpiIndMndConsumer Price IndexKpiIndMndConsumer Price Index4

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.