/v1/snapshot
All curated indicators at once
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/statcan-api/v1/snapshot" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/statcan-api/v1/snapshot", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/statcan-api/v1/snapshot");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/statcan-api/v1/snapshot",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"source": "Statistics Canada",
"country": "Canada",
"indicators": [
{
"unit": "index (2002=100)",
"label": "Consumer Price Index (all-items, Canada)",
"value": 168,
"period": "2026-04-01",
"indicator": "cpi"
},
{
"unit": "%",
"label": "Unemployment rate (Canada, seasonally adjusted)",
"value": 6.6,
"period": "2026-05-01",
"indicator": "unemployment_rate"
},
{
"unit": "millions CAD",
"label": "Monthly real GDP (all industries, chained 2017 $)",
"value": 2339731,
"period": "2026-03-01",
"indicator": "gdp_monthly"
},
{
"unit": "%",
"label": "Bank of Canada policy / bank rate",
"value": 2.5,
"period": "2026-05-01",
"indicator": "policy_rate"
},
{
"unit": "persons",
"label": "Population estimate (Canada)",
"value": 41472081,
"period": "2026-01-01",
"indicator": "population"
}
]
},
"meta": {
"timestamp": "2026-06-15T11:14:59.803Z",
"request_id": "bf583040-628f-49ba-ba8a-202aa5063d23"
},
"status": "ok",
"message": "Snapshot retrieved successfully",
"success": true
}