/v1/series
Latest observations for any SCB table
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/scb-api/v1/series" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/scb-api/v1/series", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/scb-api/v1/series");
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/scb-api/v1/series",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"path": "PR/PR0101/PR0101A/KPItotM",
"count": 12,
"label": "CPI, Fixed Index numbers by observations and month",
"source": "Statistics Sweden (SCB)",
"observations": [
{
"value": 417.96,
"period": "2025M12",
"period_code": "2025M12"
},
{
"value": 417.83,
"period": "2025M11",
"period_code": "2025M11"
},
{
"value": 419.35,
"period": "2025M10",
"period_code": "2025M10"
},
{
"value": 418.26,
"period": "2025M09",
"period_code": "2025M09"
},
{
"value": 418.13,
"period": "2025M08",
"period_code": "2025M08"
},
{
"value": 419.75,
"period": "2025M07",
"period_code": "2025M07"
},
{
"value": 418.94,
"period": "2025M06",
"period_code": "2025M06"
},
{
"value": 416.95,
"period": "2025M05",
"period_code": "2025M05"
},
{
"value": 416.69,
"period": "2025M04",
"period_code": "2025M04"
},
{
"value": 416.2,
"period": "2025M03",
"period_code": "2025M03"
},
{
"value": 419.08,
"period": "2025M02",
"period_code": "2025M02"
},
{
"value": 416.57,
"period": "2025M01",
"period_code": "2025M01"
}
]
},
"meta": {
"timestamp": "2026-06-15T11:14:50.286Z",
"request_id": "6baa5226-2876-4c0b-bd48-cc55f7c7ce1a"
},
"status": "ok",
"message": "Series retrieved successfully",
"success": true
}