Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "source": "Statistics Iceland (Hagstofa Íslands)",
        "upstream": "https://px.hagstofa.is/pxen/api/v1/en",
        "cpi_table": "Efnahagur/visitolur/1_vnv/1_vnv/VIS01000.px",
        "databases": [
            "Atvinnuvegir (industries)",
            "Efnahagur (economy)",
            "Ibuar (population)",
            "Samfelag (society)",
            "Umhverfi (environment)"
        ],
        "endpoints": [
            "/v1/cpi",
            "/v1/series",
            "/v1/table",
            "/v1/databases",
            "/v1/meta"
        ],
        "description": "Keyless gateway over Statistics Iceland's PxWeb API. /v1/cpi gives the latest Icelandic consumer price index and inflation; /v1/series pulls any PxWeb table as a clean time-series; /v1/table and /v1/databases discover the catalog.",
        "documentation": "https://api.oanor.com/iceland-stats-api"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:46.531Z",
        "request_id": "dcc89182-a503-42fc-92ab-370d76ec28a2"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}