/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}