Skip to content
GET /v1/kpi

Single KPI metadata

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/kolada-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "id": "N00003",
        "title": "Personalkostnader, kr/inv",
        "source": "Kolada (Sweden)",
        "auspice": "E",
        "description": "Personalkostnader kommunen totalt, dividerat med antal invånare totalt 31/12. Avser egen regi. Källa: SCB.",
        "operating_area": "Kommunen, övergripande",
        "has_gender_split": false,
        "municipality_type": "K"
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:30.237Z",
        "request_id": "1ae5063e-4532-4e2b-aef9-76c073e7538f"
    },
    "status": "ok",
    "message": "Kolada KPI retrieved",
    "success": true
}