/v1/cpi/series
CPI monthly 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/aland-stats-api/v1/cpi/series" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aland-stats-api/v1/cpi/series", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aland-stats-api/v1/cpi/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/aland-stats-api/v1/cpi/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": {
"base": "2025 = 100",
"count": 17,
"region": "Åland Islands",
"series": [
{
"index": 100.37,
"period": "2025M01",
"period_iso": "2025-01",
"change_mom_pct": null,
"change_yoy_pct": null
},
{
"index": 100.57,
"period": "2025M02",
"period_iso": "2025-02",
"change_mom_pct": 0.2,
"change_yoy_pct": null
},
{
"index": 100.41,
"period": "2025M03",
"period_iso": "2025-03",
"change_mom_pct": -0.2,
"change_yoy_pct": null
},
{
"index": 100.2,
"period": "2025M04",
"period_iso": "2025-04",
"change_mom_pct": -0.2,
"change_yoy_pct": null
},
{
"index": 100,
"period": "2025M05",
"period_iso": "2025-05",
"change_mom_pct": -0.2,
"change_yoy_pct": null
},
{
"index": 99.92,
"period": "2025M06",
"period_iso": "2025-06",
"change_mom_pct": -0.1,
"change_yoy_pct": null
},
{
"index": 100.31,
"period": "2025M07",
"period_iso": "2025-07",
"change_mom_pct": 0.4,
"change_yoy_pct": null
},
{
"index": 99.71,
"period": "2025M08",
"period_iso": "2025-08",
"change_mom_pct": -0.6,
"change_yoy_pct": null
},
{
"index": 99.52,
"period": "2025M09",
"period_iso": "2025-09",
"change_mom_pct": -0.2,
"change_yoy_pct": null
},
{
"index": 99.63,
"period": "2025M10",
"period_iso": "2025-10",
"change_mom_pct": 0.1,
"change_yoy_pct": null
},
{
"index": 99.6,
"period": "2025M11",
"period_iso": "2025-11",
"change_mom_pct": 0,
"change_yoy_pct": null
},
{
"index": 99.7,
"period": "2025M12",
"period_iso": "2025-12",
"change_mom_pct": 0.1,
"change_yoy_pct": null
},
{
"index": 99.61,
"period": "2026M01",
"period_iso": "2026-01",
"change_mom_pct": -0.1,
"change_yoy_pct": -0.8
},
{
"index": 99.7,
…