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/netherlands-stats-api

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "Dataset/tableinfo take a CBS table identifier, e.g. 83131NED (consumer prices). Period codes: YYYYMMnn = month, YYYYKWnn = quarter, YYYYJJ00 = year.",
        "source": "Statistics Netherlands (Centraal Bureau voor de Statistiek, CBS)",
        "upstream": "https://opendata.cbs.nl/ODataApi/odata",
        "cpi_table": "83131NED",
        "endpoints": [
            "/v1/cpi",
            "/v1/dataset",
            "/v1/tableinfo",
            "/v1/catalog",
            "/v1/meta"
        ],
        "description": "Keyless gateway over the CBS StatLine OpenData (OData v3) API. /v1/cpi gives the latest Dutch consumer price index and inflation; /v1/dataset pulls any StatLine table's observations; /v1/tableinfo and /v1/catalog discover the catalogue.",
        "documentation": "https://api.oanor.com/netherlands-stats-api"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:37.465Z",
        "request_id": "eb7a8175-7d4f-43a0-8d64-0b49e57bd896"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}