Naar de inhoud
GET /v1/cpi/divisions

CPI by COICOP division

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/aland-stats-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "base": "2025 = 100",
        "count": 13,
        "period": "2026M05",
        "region": "Åland Islands",
        "source": "ÅSUB KO010",
        "divisions": [
            {
                "index": 101.32,
                "label": "Food & non-alcoholic beverages",
                "coicop": "01",
                "change_yoy_pct": 1.1
            },
            {
                "index": 102.72,
                "label": "Alcoholic beverages & tobacco",
                "coicop": "02",
                "change_yoy_pct": 3.2
            },
            {
                "index": 100.79,
                "label": "Clothing & footwear",
                "coicop": "03",
                "change_yoy_pct": 0.5
            },
            {
                "index": 99.75,
                "label": "Housing, water, electricity, gas & fuels",
                "coicop": "04",
                "change_yoy_pct": 0.5
            },
            {
                "index": 102.12,
                "label": "Furnishings & household equipment",
                "coicop": "05",
                "change_yoy_pct": 1.1
            },
            {
                "index": 111.85,
                "label": "Health",
                "coicop": "06",
                "change_yoy_pct": 5.5
            },
            {
                "index": 105.12,
                "label": "Transport",
                "coicop": "07",
                "change_yoy_pct": 5.7
            },
            {
                "index": 102.83,
                "label": "Communication",
                "coicop": "08",
                "change_yoy_pct": 3.5
            },
            {
                "index": 101.45,
                "label": "Recreation & culture",
                "coicop": "09",
                "change_yoy_pct": 1.8
            },
            {
                "index": 106.25,
                "label": "Education",
                "coicop": "10",
                "change_yoy_pct": 6.2
            },
            {
                "index": 102.45,
                "label": "Restaurants & hotels",
                "coicop": "11",
                "change_yoy_pct": 2.6
            },
            {
                "index": 97.91,
                "label": "Miscellaneous goods & services",
                "coicop": "12",
                "change_yoy_pct": -2.9
            },
            {
                "index": 98.17,
                "label": "Other / personal care",
                "coicop": "13",
                "change_yoy_pct": -2
            }
        ],
        "indicator": "CPI by COICOP division",
        "period_iso": "2026-05"
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:29.145Z",
        "request_id": "01f76768-12b5-471a-b607-bf17fdb7ccbc"
    },
    "status": "ok",
    "message": "Åland CPI by division retrieved",
    "success": true
}