/v1/series
Any PxWeb table as a time-series
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/series" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/greenland-stats-api/v1/series", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/greenland-stats-api/v1/series");
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/series",
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/PRXPRISF.px",
"title": "Consumer Price Index by time and index",
"series": [
{
"value": 139.4,
"period": "2026H1"
},
{
"value": 137.5,
"period": "2025H2"
},
{
"value": 134.4,
"period": "2025H1"
},
{
"value": 132.7,
"period": "2024H2"
},
{
"value": 129.8,
"period": "2024H1"
},
{
"value": 129,
"period": "2023H2"
},
{
"value": 127,
"period": "2023H1"
},
{
"value": 125.9,
"period": "2022H2"
},
{
"value": 123.6,
"period": "2022H1"
},
{
"value": 123.2,
"period": "2021H2"
},
{
"value": 123.3,
"period": "2021H1"
},
{
"value": 123.4,
"period": "2020H2"
}
],
"constrained": {
"index": {
"pos": 0,
"code": "4",
"label": "Jan 2008=100"
}
},
"time_dimension": "time"
},
"meta": {
"timestamp": "2026-06-15T11:14:43.603Z",
"request_id": "a19f9cb1-6d62-41c1-b451-757be706c93c"
},
"status": "ok",
"message": "Series retrieved successfully",
"success": true
}