/v1/series
Any DZS 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/croatia-stats-api/v1/series" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/croatia-stats-api/v1/series", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/croatia-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/croatia-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": "Cijene/Indeksi potrošačkih cijena/Indeksi potrošačkih cijena – ECOICOP, ver. 2/ME_PS09.px",
"count": 12,
"title": "Table 1.2 Consumer price indices by ECOICOP ver. 2 classification, monthly by ECOICOP ver. 2, Indicators and Month",
"series": [
{
"value": 104.8,
"period": "2026M05",
"period_label": "2026M05"
},
{
"value": 105.1,
"period": "2026M04",
"period_label": "2026M04"
},
{
"value": 103.4,
"period": "2026M03",
"period_label": "2026M03"
},
{
"value": 102,
"period": "2026M02",
"period_label": "2026M02"
},
{
"value": 101.7,
"period": "2026M01",
"period_label": "2026M01"
},
{
"value": 101.4,
"period": "2025M12",
"period_label": "2025M12"
},
{
"value": 101.9,
"period": "2025M11",
"period_label": "2025M11"
},
{
"value": 101.3,
"period": "2025M10",
"period_label": "2025M10"
},
{
"value": 100.7,
"period": "2025M09",
"period_label": "2025M09"
},
{
"value": 100.3,
"period": "2025M08",
"period_label": "2025M08"
},
{
"value": 100.2,
"period": "2025M07",
"period_label": "2025M07"
},
{
"value": 99.9,
"period": "2025M06",
"period_label": "2025M06"
}
],
"constrained": {
"Indikatori": {
"pos": 0,
"code": "4",
"label": "indices (2025 = 100)"
},
"ECOICOP, ver. 2": {
"pos": 0,
"code": "00",
"label": "00 CONSUMER PRICE INDEX – TOTAL"
}
},
"time_dimension": "Mjesec"
},
"meta": {
"timestamp": "2026-06-15T20:41:12.531Z",
"request_id": "45b82bcf-c3b8-4ad8-92d9-7cdbea0647e2"
},
"status": "ok",
"message": "Series retrieved successfully",
"success": true
}