/v1/series
Latest observations for any SSB table
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/ssb-api/v1/series" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ssb-api/v1/series", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ssb-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/ssb-api/v1/series",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 12,
"label": "03013: Consumer Price Index, by consumption group, contents and month",
"table": "03013",
"source": "Statistics Norway (SSB)",
"observations": [
{
"value": 139.1,
"period": "2025M12",
"period_code": "2025M12"
},
{
"value": 138.9,
"period": "2025M11",
"period_code": "2025M11"
},
{
"value": 138.7,
"period": "2025M10",
"period_code": "2025M10"
},
{
"value": 138.5,
"period": "2025M09",
"period_code": "2025M09"
},
{
"value": 138,
"period": "2025M08",
"period_code": "2025M08"
},
{
"value": 138.9,
"period": "2025M07",
"period_code": "2025M07"
},
{
"value": 137.8,
"period": "2025M06",
"period_code": "2025M06"
},
{
"value": 137.5,
"period": "2025M05",
"period_code": "2025M05"
},
{
"value": 137,
"period": "2025M04",
"period_code": "2025M04"
},
{
"value": 136.1,
"period": "2025M03",
"period_code": "2025M03"
},
{
"value": 137,
"period": "2025M02",
"period_code": "2025M02"
},
{
"value": 135.1,
"period": "2025M01",
"period_code": "2025M01"
}
]
},
"meta": {
"timestamp": "2026-06-15T11:14:53.452Z",
"request_id": "88177cff-f239-4837-a95a-5c3b324f5dc8"
},
"status": "ok",
"message": "Series retrieved successfully",
"success": true
}