Ir al contenido
GET /v1/table

Statbank table metadata (variables + values)

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/denmark-stats-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "id": "PRIS111",
        "text": "Forbrugerprisindeks",
        "unit": "-",
        "source": "Statistics Denmark (Statbank)",
        "updated": "2026-01-12T08:00:00",
        "variables": [
            {
                "id": "VAREGR",
                "text": "varegruppe",
                "time": false,
                "sample": [
                    {
                        "id": "000000",
                        "text": "00 Forbrugerprisindekset i alt"
                    },
                    {
                        "id": "010000",
                        "text": "01 Fødevarer og ikke-alkoholiske drikkevarer"
                    },
                    {
                        "id": "011000",
                        "text": "01.1 Fødevarer"
                    },
                    {
                        "id": "011100",
                        "text": "01.1.1 Brød og kornprodukter"
                    },
                    {
                        "id": "011110",
                        "text": "01.1.1.1 Ris"
                    }
                ],
                "elimination": true,
                "values_count": 385
            },
            {
                "id": "ENHED",
                "text": "enhed",
                "time": false,
                "sample": [
                    {
                        "id": "100",
                        "text": "Indeks"
                    },
                    {
                        "id": "200",
                        "text": "Ændring i forhold til måneden før (pct.)"
                    },
                    {
                        "id": "300",
                        "text": "Ændring i forhold til samme måned året før (pct.)"
                    }
                ],
                "elimination": false,
                "values_count": 3
            },
            {
                "id": "Tid",
                "text": "tid",
                "time": true,
                "sample": [
                    {
                        "id": "2001M01",
                        "text": "2001M01"
                    },
                    {
                        "id": "2001M02",
                        "text": "2001M02"
                    },
                    {
                        "id": "2001M03",
                        "text": "2001M03"
                    },
                    {
                        "id": "2001M04",
                        "text": "2001M04"
                    },
                    {
                        "id": "2001M05",
                        "text": "2001M05"
                    }
                ],
                "elimination": false,
                "values_count": 300
            }
        ],
        "description": "Forbrugerprisindeks efter varegruppe, enhed og tid"
    },
    "meta": {
        "timestamp": "2026-06-15T20:41:05.664Z",
        "request_id": "e65c6e69-cc38-4ca7-80ad-ee6c40e382d4"
    },
    "status": "
…