/v1/databases
Browse the database tree
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/greenland-stats-api/v1/databases" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/greenland-stats-api/v1/databases", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/greenland-stats-api/v1/databases");
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/databases",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"path": "PR",
"count": 9,
"items": [
{
"id": "PRXBYG1.px",
"text": "Construction cost index(2006=100) by building trade and type (2006H1-2025H2) [PREBYG1]",
"type": "t"
},
{
"id": "PRXBYG2.px",
"text": "Building Cost Index for Dwellings (2025H1=100) [PREBYG2]",
"type": "t"
},
{
"id": "PRXPLI.px",
"text": "Price level index (index DK=100) by commodity group (2014-2016)",
"type": "t"
},
{
"id": "PRXPRISF.px",
"text": "Consumer price index series (1971H1-2026H1) [PREPRISF]",
"type": "t"
},
{
"id": "PRXPRISG.px",
"text": "Rate of change per cent per six months, Consumer price index (1971H2-2026H1) [PREPRISG]",
"type": "t"
},
{
"id": "PRXPRISH.px",
"text": "Rate of change last 12 months, Consumer price index (1972H1-2026H1) [PREPRISH]",
"type": "t"
},
{
"id": "PRXPRISR.px",
"text": "Wage regulating price index series (1971H1-2026H1) [PREPRISR]",
"type": "t"
},
{
"id": "PRXPRISV.px",
"text": "Consumer price index (2008=100) by commodity group (2008H1-2026H1) [PREPRISV]",
"type": "t"
},
{
"id": "PRXPRISW.px",
"text": "Wage regulating price index (2008=100) by commodity group (2008H1-2026H1) [PREPRISW]",
"type": "t"
}
]
},
"meta": {
"timestamp": "2026-06-15T11:14:43.919Z",
"request_id": "e795a8a3-9871-4a2c-8692-87a7e9387442"
},
"status": "ok",
"message": "Databases retrieved successfully",
"success": true
}