Naar de inhoud
GET /v1/meta

API metadata + COICOP group codes

Probeer het live

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

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

Voorbeeldrespons

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

{
    "data": {
        "api": "Statistics North Macedonia (MAKStat) API",
        "notes": "Live data from MAKStat PxWeb (json-stat2); MoM = (current/previous month -1), YoY = (current/same month previous year -1), derived from the official ratio table.",
        "source": "State Statistical Office of North Macedonia — MAKStat PxWeb API (makstat.stat.gov.mk)",
        "country": "North Macedonia",
        "endpoints": [
            "/v1/cpi",
            "/v1/cpi/series",
            "/v1/cpi/groups",
            "/v1/cpi/group",
            "/v1/meta"
        ],
        "coicop_groups": {
            "001": "Total",
            "002": "01 Food & non-alcoholic beverages",
            "003": "02 Alcoholic beverages & tobacco",
            "004": "03 Clothing & footwear",
            "005": "04 Housing, water, electricity, gas & fuels",
            "006": "05 Furnishings & household equipment",
            "007": "06 Health",
            "008": "07 Transport",
            "009": "08 Information & communication",
            "010": "09 Recreation, sport & culture",
            "011": "10 Education services",
            "012": "11 Restaurants & accommodation",
            "013": "12 Insurance & financial services",
            "014": "13 Personal care, social protection & misc"
        },
        "documentation": "https://api.oanor.com/macedonia-stats-api",
        "primary_indicator": "Consumer Price Index by ECOICOP v2 (table 121) — month-on-month and year-on-year changes, Total + 13 COICOP groups"
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:33.736Z",
        "request_id": "60062621-5989-4c39-81a8-f3bee6db6086"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}