/v1/table
Statbank table metadata (variables + values)
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/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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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": "
…