All datasets

Consumer Price Index, monthly, not seasonally adjusted

Consumer Price Index (CPI), monthly, not seasonally adjusted. Statistics Canada table 18-10-0004-01.

Source: Government of Canada Open Data1,152,913 rowsUpdated: 9/20/2026License: OGL-Canada-2.0
cpiinflationstatcangovernment-of-canada

Quality

97.8

Attribution

Contains information licensed under the Open Government Licence – Canada

Schema

ColumnTypeDescription
ref_datestringReference date — the time period the observation refers to (Statistics Canada table field REF_DATE).
geostringGeography the observation covers (Statistics Canada table field GEO).
dguidstringDissemination geography unique identifier (Statistics Canada table field DGUID).
products_and_product_groupsstring
uomstringUnit of measure for the estimate (Statistics Canada table field UOM).
uom_idintegerUnit of measure identifier (Statistics Canada table field UOM_ID).
scalar_factorstringScalar factor applied to the value, e.g. units, thousands or millions (Statistics Canada table field SCALAR_FACTOR).
scalar_idintegerScalar factor identifier (Statistics Canada table field SCALAR_ID).
vectorstringVector number — Statistics Canada's unique identifier for the time series (table field VECTOR).
coordinatefloatTable coordinate locating the estimate within the source table (Statistics Canada table field COORDINATE).
valuefloatEstimate value as published in the Statistics Canada table.
terminatedstringWhether the series has been terminated (Statistics Canada table field TERMINATED).
decimalsintegerNumber of decimals published for the estimate (Statistics Canada table field DECIMALS).

Sample rows

ref_dategeodguidproducts_and_product_groupsuomuom_idscalar_factorscalar_idvectorcoordinatevalueterminateddecimals
1914-01Canada2016A000011124All-items2002=10017units0v416909732.261
1914-01Canada2016A000011124All-items (1992=100)1992=1007units0v417134032.3097.2t1
1914-01Canada2016A000011124Goods and services2002=10017units0v416912212.2736t1
1914-02Canada2016A000011124All-items2002=10017units0v416909732.261
1914-02Canada2016A000011124All-items (1992=100)1992=1007units0v417134032.3097.2t1

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/ckan_canada/cpi_monthly" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/ckan_canada/cpi_monthly").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/ckan_canada/cpi_monthly

Tip: fetch /llms.txt for the full machine-readable catalog.