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/iceland-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/iceland-stats-api/v1/databases" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/iceland-stats-api/v1/databases", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/iceland-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/iceland-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": "Efnahagur",
        "count": 6,
        "items": [
            {
                "id": "fjaropinber",
                "text": "Public finance",
                "type": "l"
            },
            {
                "id": "thjodhagsreikningar",
                "text": "National accounts",
                "type": "l"
            },
            {
                "id": "thjodhagsspa",
                "text": "Economic forecast",
                "type": "l"
            },
            {
                "id": "utanrikisverslun",
                "text": "External trade",
                "type": "l"
            },
            {
                "id": "vinnumagnogframleidni",
                "text": "Employment and labour productivity",
                "type": "l"
            },
            {
                "id": "visitolur",
                "text": "Prices and consumption",
                "type": "l"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:46.300Z",
        "request_id": "6ad108e9-3f37-484c-89c5-065fbc27b417"
    },
    "status": "ok",
    "message": "Databases retrieved successfully",
    "success": true
}