/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode 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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
}