Consumer Price Index, monthly, not seasonally adjusted
Consumer Price Index (CPI), monthly, not seasonally adjusted. Statistics Canada table 18-10-0004-01.
cpiinflationstatcangovernment-of-canada
Quality
97.8
Attribution
Contains information licensed under the Open Government Licence – Canada
Schema
| Column | Type | Description |
|---|---|---|
| ref_date | string | Reference date — the time period the observation refers to (Statistics Canada table field REF_DATE). |
| geo | string | Geography the observation covers (Statistics Canada table field GEO). |
| dguid | string | Dissemination geography unique identifier (Statistics Canada table field DGUID). |
| products_and_product_groups | string | |
| uom | string | Unit of measure for the estimate (Statistics Canada table field UOM). |
| uom_id | integer | Unit of measure identifier (Statistics Canada table field UOM_ID). |
| scalar_factor | string | Scalar factor applied to the value, e.g. units, thousands or millions (Statistics Canada table field SCALAR_FACTOR). |
| scalar_id | integer | Scalar factor identifier (Statistics Canada table field SCALAR_ID). |
| vector | string | Vector number — Statistics Canada's unique identifier for the time series (table field VECTOR). |
| coordinate | float | Table coordinate locating the estimate within the source table (Statistics Canada table field COORDINATE). |
| value | float | Estimate value as published in the Statistics Canada table. |
| terminated | string | Whether the series has been terminated (Statistics Canada table field TERMINATED). |
| decimals | integer | Number of decimals published for the estimate (Statistics Canada table field DECIMALS). |
Sample rows
| ref_date | geo | dguid | products_and_product_groups | uom | uom_id | scalar_factor | scalar_id | vector | coordinate | value | terminated | decimals |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1914-01 | Canada | 2016A000011124 | All-items | 2002=100 | 17 | units | 0 | v41690973 | 2.2 | 6 | — | 1 |
| 1914-01 | Canada | 2016A000011124 | All-items (1992=100) | 1992=100 | 7 | units | 0 | v41713403 | 2.309 | 7.2 | t | 1 |
| 1914-01 | Canada | 2016A000011124 | Goods and services | 2002=100 | 17 | units | 0 | v41691221 | 2.273 | 6 | t | 1 |
| 1914-02 | Canada | 2016A000011124 | All-items | 2002=100 | 17 | units | 0 | v41690973 | 2.2 | 6 | — | 1 |
| 1914-02 | Canada | 2016A000011124 | All-items (1992=100) | 1992=100 | 7 | units | 0 | v41713403 | 2.309 | 7.2 | t | 1 |
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.