/v1/table
Table metadata (variables and value codes)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/greenland-stats-api/v1/table" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/greenland-stats-api/v1/table", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/greenland-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/greenland-stats-api/v1/table",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"path": "PR/PRXPRISF.px",
"title": "Consumer Price Index by time and index",
"variables": [
{
"code": "time",
"text": "time",
"time": true,
"n_values": 111,
"sample_values": [
{
"code": "106",
"text": "2024H1"
},
{
"code": "107",
"text": "2024H2"
},
{
"code": "108",
"text": "2025H1"
},
{
"code": "109",
"text": "2025H2"
},
{
"code": "110",
"text": "2026H1"
}
]
},
{
"code": "index",
"text": "index",
"time": false,
"n_values": 5,
"sample_values": [
{
"code": "0",
"text": "Jan 1971=100"
},
{
"code": "1",
"text": "Jan 1975=100"
},
{
"code": "2",
"text": "Jan 1981=100"
},
{
"code": "3",
"text": "Juli 1995=100"
},
{
"code": "4",
"text": "Jan 2008=100"
}
]
}
]
},
"meta": {
"timestamp": "2026-06-15T11:14:44.189Z",
"request_id": "c0ec6436-71f8-469b-a695-3845261ba4d3"
},
"status": "ok",
"message": "Table metadata retrieved successfully",
"success": true
}