/v1/series
Any PxWeb table as a time-series
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/iceland-stats-api/v1/series" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/iceland-stats-api/v1/series", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/iceland-stats-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/iceland-stats-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": "Efnahagur/visitolur/1_vnv/1_vnv/VIS01000.px",
"title": "Consumer price index by Month, Index and Item",
"series": [
{
"value": 684.3,
"period": "2026M05"
},
{
"value": 683.8,
"period": "2026M04"
},
{
"value": 678.3,
"period": "2026M03"
},
{
"value": 674.6,
"period": "2026M02"
},
{
"value": 668.3,
"period": "2026M01"
},
{
"value": 665.8,
"period": "2025M12"
},
{
"value": 658.2,
"period": "2025M11"
},
{
"value": 661.4,
"period": "2025M10"
},
{
"value": 658.3,
"period": "2025M09"
},
{
"value": 657.6,
"period": "2025M08"
},
{
"value": 658.6,
"period": "2025M07"
},
{
"value": 656.5,
"period": "2025M06"
}
],
"constrained": {
"Item": {
"pos": 0,
"code": "index",
"label": "Index"
},
"Index": {
"pos": 0,
"code": "CPI",
"label": "Consumer price index"
}
},
"time_dimension": "Month"
},
"meta": {
"timestamp": "2026-06-15T11:14:46.124Z",
"request_id": "bb37dc4f-c3e9-4dd0-b006-2cac6afe7342"
},
"status": "ok",
"message": "Series retrieved successfully",
"success": true
}