Zum Inhalt springen
GET /v1/databases

Browse the database tree

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/greenland-stats-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "path": "PR",
        "count": 9,
        "items": [
            {
                "id": "PRXBYG1.px",
                "text": "Construction cost index(2006=100) by building trade and type (2006H1-2025H2) [PREBYG1]",
                "type": "t"
            },
            {
                "id": "PRXBYG2.px",
                "text": "Building Cost Index for Dwellings (2025H1=100) [PREBYG2]",
                "type": "t"
            },
            {
                "id": "PRXPLI.px",
                "text": "Price level index (index DK=100) by commodity group (2014-2016)",
                "type": "t"
            },
            {
                "id": "PRXPRISF.px",
                "text": "Consumer price index series (1971H1-2026H1) [PREPRISF]",
                "type": "t"
            },
            {
                "id": "PRXPRISG.px",
                "text": "Rate of change per cent per six months, Consumer price index (1971H2-2026H1) [PREPRISG]",
                "type": "t"
            },
            {
                "id": "PRXPRISH.px",
                "text": "Rate of change last 12 months, Consumer price index (1972H1-2026H1) [PREPRISH]",
                "type": "t"
            },
            {
                "id": "PRXPRISR.px",
                "text": "Wage regulating price index series (1971H1-2026H1) [PREPRISR]",
                "type": "t"
            },
            {
                "id": "PRXPRISV.px",
                "text": "Consumer price index (2008=100) by commodity group (2008H1-2026H1) [PREPRISV]",
                "type": "t"
            },
            {
                "id": "PRXPRISW.px",
                "text": "Wage regulating price index (2008=100) by commodity group (2008H1-2026H1) [PREPRISW]",
                "type": "t"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:43.919Z",
        "request_id": "e795a8a3-9871-4a2c-8692-87a7e9387442"
    },
    "status": "ok",
    "message": "Databases retrieved successfully",
    "success": true
}