Skip to content
GET /v1/catalog

Search the SiStat matrix catalogue

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/slovenia-stats-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/slovenia-stats-api/v1/catalog" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/slovenia-stats-api/v1/catalog", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/slovenia-stats-api/v1/catalog");
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/slovenia-stats-api/v1/catalog",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "count": 10,
        "query": "consumer price",
        "total": 4765,
        "tables": [
            {
                "id": "0400600S",
                "text": "Consumer price indices by ECOICOP ver. 1 classification, Slovenia, 2000M01 - 2025M12",
                "updated": "2026-02-13T09:48:42"
            },
            {
                "id": "0400601S",
                "text": "Consumer price indices by COICOP/HICP by groups and subgroups, Slovenia, 2000M01 - 2016M12",
                "updated": "2022-01-20T11:52:08"
            },
            {
                "id": "0400606S",
                "text": "Harmonised index of consumer prices by ECOICOP ver. 1 classification, Slovenia, 2001M01 - 2025M12",
                "updated": "2026-02-13T09:48:28"
            },
            {
                "id": "0400607S",
                "text": "Harmonised index of consumer prices at constant tax rates by ECOICOP ver. 1 classification, Slovenia, 2003M01 - 2025M12",
                "updated": "2026-02-13T09:44:04"
            },
            {
                "id": "0400608S",
                "text": "Consumer price indices (ECOICOP ver. 2), Slovenia, monthly",
                "updated": "2026-06-02T13:20:27"
            },
            {
                "id": "0400609S",
                "text": "Harmonised index of consumer prices (ECOICOP ver. 2), Slovenia, monthly",
                "updated": "2026-06-02T13:09:23"
            },
            {
                "id": "0400610S",
                "text": "Harmonised index of consumer prices at constant tax rates (ECOICOP ver. 2), Slovenia, monthly",
                "updated": "2026-06-02T13:12:37"
            },
            {
                "id": "0400611S",
                "text": "Consumer price indices and growth rates of prices by main groups, Slovenia, annually",
                "updated": "2026-02-25T13:42:33"
            },
            {
                "id": "0811603S",
                "text": "Consumer survey, past trend of consumer prices perceptions, Slovenia, monthly",
                "updated": "2026-05-19T11:10:03"
            },
            {
                "id": "0811604S",
                "text": "Consumer survey, future trend of consumer prices expectations, Slovenia, monthly",
                "updated": "2026-05-19T11:10:06"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T20:41:16.351Z",
        "request_id": "1a97bd31-c4b5-4260-8496-1db3be2084ad"
    },
    "status": "ok",
    "message": "Catalog retrieved successfully",
    "success": true
}