Naar de inhoud
GET /v1/table

Table metadata (variables and value 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/finland-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/finland-stats-api/v1/table" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/finland-stats-api/v1/table", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/finland-stats-api/v1/table");
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/finland-stats-api/v1/table",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

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

{
    "data": {
        "path": "khi/15b5.px",
        "title": "Consumer Price Index (2025=100) by Month, Commodity and Information",
        "variables": [
            {
                "code": "timeperiod_m",
                "text": "Month",
                "time": true,
                "n_values": 377,
                "sample_values": [
                    {
                        "code": "1995M01",
                        "text": "1995M01"
                    },
                    {
                        "code": "1995M02",
                        "text": "1995M02"
                    },
                    {
                        "code": "1995M03",
                        "text": "1995M03"
                    },
                    {
                        "code": "1995M04",
                        "text": "1995M04"
                    },
                    {
                        "code": "1995M05",
                        "text": "1995M05"
                    }
                ]
            },
            {
                "code": "coicop_46_20231201",
                "text": "Commodity",
                "time": false,
                "n_values": 390,
                "sample_values": [
                    {
                        "code": "SSS",
                        "text": "0 Total"
                    },
                    {
                        "code": "01",
                        "text": "01 FOOD AND NON-ALCOHOLIC BEVERAGES"
                    },
                    {
                        "code": "011",
                        "text": "01.1 Food"
                    },
                    {
                        "code": "0111",
                        "text": "01.1.1 Cereals and cereal products (ND)"
                    },
                    {
                        "code": "01111",
                        "text": "01.1.1.1 Cereals (ND)"
                    }
                ]
            },
            {
                "code": "contentscode",
                "text": "Information",
                "time": false,
                "n_values": 5,
                "sample_values": [
                    {
                        "code": "ip_khi",
                        "text": "Point figure, CPI"
                    },
                    {
                        "code": "vm_khi",
                        "text": "Annual change (%), CPI"
                    },
                    {
                        "code": "km_khi",
                        "text": "Monthly change (%), CPI"
                    },
                    {
                        "code": "vv_khi",
                        "text": "Annual impact (%-units), CPI"
                    },
                    {
                        "code": "kv_khi",
                        "text": "Monthly impact (%-units), CPI"
                    }
                ]
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:41.500Z",
        "
…