Naar de inhoud
GET /v1/cpi/divisions

Latest CPI across all 13 COICOP divisions

Probeer het live

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

Aangepaste headers (optioneel)
api.oanor.com/malaysia-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/malaysia-stats-api/v1/cpi/divisions" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/malaysia-stats-api/v1/cpi/divisions", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/malaysia-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/malaysia-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": "2010 = 100",
        "count": 13,
        "period": "2026-04-01",
        "source": "OpenDOSM cpi_headline",
        "country": "Malaysia",
        "divisions": [
            {
                "index": 159.6,
                "label": "Food & non-alcoholic beverages",
                "division": "01"
            },
            {
                "index": 178.1,
                "label": "Alcoholic beverages & tobacco",
                "division": "02"
            },
            {
                "index": 93,
                "label": "Clothing & footwear",
                "division": "03"
            },
            {
                "index": 132.5,
                "label": "Housing, water, electricity, gas & fuels",
                "division": "04"
            },
            {
                "index": 127.1,
                "label": "Furnishings & household equipment",
                "division": "05"
            },
            {
                "index": 133.5,
                "label": "Health",
                "division": "06"
            },
            {
                "index": 127.3,
                "label": "Transport",
                "division": "07"
            },
            {
                "index": 91.3,
                "label": "Communication",
                "division": "08"
            },
            {
                "index": 121.6,
                "label": "Recreation services & culture",
                "division": "09"
            },
            {
                "index": 132.1,
                "label": "Education",
                "division": "10"
            },
            {
                "index": 159.6,
                "label": "Restaurants & hotels",
                "division": "11"
            },
            {
                "index": 117.3,
                "label": "Miscellaneous goods & services",
                "division": "12"
            },
            {
                "index": 136.6,
                "label": "Personal care, social protection & misc",
                "division": "13"
            }
        ],
        "indicator": "CPI by COICOP division"
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:36.344Z",
        "request_id": "6146f495-7d44-40ab-8574-4011541b4e96"
    },
    "status": "ok",
    "message": "Malaysia CPI by division retrieved",
    "success": true
}