Naar de inhoud
GET /v1/databases

Browse the database tree

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

Voorbeeldrespons

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

{
    "data": {
        "path": "khi",
        "count": 17,
        "items": [
            {
                "id": "11xc.px",
                "text": "11xc -- Consumer Price Index (2015=100), yearly data, 2015-2025",
                "type": "t"
            },
            {
                "id": "11xl.px",
                "text": "11xl -- Cost-of-living index (1951:10=100), monthly data, 1951M01-2026M05",
                "type": "t"
            },
            {
                "id": "11xm.px",
                "text": "11xm -- Cost-of-living index (1951:10=100), annual data, 1951-2025",
                "type": "t"
            },
            {
                "id": "11xn.px",
                "text": "11xn -- Cost-of-living index (1938:8-1939:7=100), monthly data, 1939M01-2026M05",
                "type": "t"
            },
            {
                "id": "11xp.px",
                "text": "11xp -- Cost-of-living index (1938:8-1939:7=100), annual data, 1939-2025",
                "type": "t"
            },
            {
                "id": "11xs.px",
                "text": "11xs -- Consumer Price Indices, overall index, monthly data, 1972M01-2026M05",
                "type": "t"
            },
            {
                "id": "11xt.px",
                "text": "11xt -- Consumer Price Indices, overall index, yearly data, 1972-2025",
                "type": "t"
            },
            {
                "id": "11xx.px",
                "text": "11xx -- Average prices of liquid fuels, monthly data, 2002M01-2026M05",
                "type": "t"
            },
            {
                "id": "11xy.px",
                "text": "11xy -- Cost-of-living index (1914:1-6=100), annual data, 1860-2025",
                "type": "t"
            },
            {
                "id": "11z1.px",
                "text": "11z1 -- Average prices of liquid fuels, annual data, 2002-2025",
                "type": "t"
            },
            {
                "id": "122p.px",
                "text": "122p -- Annual changes of Consumer Price Index, monthly data, 1980M01-2026M05",
                "type": "t"
            },
            {
                "id": "122q.px",
                "text": "122q -- Annual changes of Consumer Price Index, yearly data, 1980-2025",
                "type": "t"
            },
            {
                "id": "15b5.px",
                "text": "15b5 -- Consumer Price Index (2025=100), monthly data, 1995M01-2026M05",
                "type": "t"
            },
            {
                "id": "15b7.px",
                "text": "15b7 -- Harmonised Index of Consumer Prices (HICP) and Harmonised Index of Consumer Prices at Constant Taxes (HICP-CT) (2025=100), monthly data, 1996M01-2026M05",
                "type": "t"
            },
            {
                "id": "15b9.px",
                "text": "15b9 -- Harmonised Index of Consumer Prices (HICP), preliminary data (2025=100), monthly data, 2026M01-2026M05",
           
…