Vai al contenuto
GET /v1/dataset

Observations from any CBS StatLine table

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/netherlands-stats-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "rows": [
            {
                "CPI_1": 131.35,
                "Perioden": "2025MM01"
            },
            {
                "CPI_1": 132.8,
                "Perioden": "2025MM02"
            },
            {
                "CPI_1": 133.33,
                "Perioden": "2025MM03"
            },
            {
                "CPI_1": 134.72,
                "Perioden": "2025MM04"
            },
            {
                "CPI_1": 134,
                "Perioden": "2025MM05"
            },
            {
                "CPI_1": 133.96,
                "Perioden": "2025MM06"
            },
            {
                "CPI_1": 135.69,
                "Perioden": "2025MM07"
            },
            {
                "CPI_1": 135.99,
                "Perioden": "2025MM08"
            },
            {
                "CPI_1": 135.92,
                "Perioden": "2025MM09"
            },
            {
                "CPI_1": 136.38,
                "Perioden": "2025MM10"
            }
        ],
        "count": 10,
        "table": "83131NED"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:37.240Z",
        "request_id": "c615b161-88cb-4b36-832b-2116c738206a"
    },
    "status": "ok",
    "message": "Dataset retrieved successfully",
    "success": true
}