Ir al contenido
GET /v1/cpi

Latest Finnish CPI and inflation

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/finland-stats-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/finland-stats-api/v1/cpi" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/finland-stats-api/v1/cpi", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/finland-stats-api/v1/cpi");
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/finland-stats-api/v1/cpi",
    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",
        "latest": {
            "month": "2026M05",
            "index_value": 102.14,
            "change_annual_pct": 2.1
        },
        "series": [
            {
                "month": "2026M05",
                "index_value": 102.14,
                "change_annual_pct": 2.1
            },
            {
                "month": "2026M04",
                "index_value": 101.68,
                "change_annual_pct": 1.5
            },
            {
                "month": "2026M03",
                "index_value": 101.56,
                "change_annual_pct": 1.3
            },
            {
                "month": "2026M02",
                "index_value": 100.83,
                "change_annual_pct": 0.6
            },
            {
                "month": "2026M01",
                "index_value": 99.78,
                "change_annual_pct": -0.2
            },
            {
                "month": "2025M12",
                "index_value": 99.93,
                "change_annual_pct": 0.2
            },
            {
                "month": "2025M11",
                "index_value": 99.71,
                "change_annual_pct": -0.1
            },
            {
                "month": "2025M10",
                "index_value": 99.95,
                "change_annual_pct": -0.2
            },
            {
                "month": "2025M09",
                "index_value": 100.11,
                "change_annual_pct": 0.5
            },
            {
                "month": "2025M08",
                "index_value": 99.77,
                "change_annual_pct": 0.5
            },
            {
                "month": "2025M07",
                "index_value": 100.01,
                "change_annual_pct": 0.2
            },
            {
                "month": "2025M06",
                "index_value": 99.82,
                "change_annual_pct": 0.2
            }
        ],
        "source": "Statistics Finland (StatFin)",
        "measure": "Consumer price index"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:40.460Z",
        "request_id": "2aa8bc9c-fca2-415f-99a5-b2e72852e959"
    },
    "status": "ok",
    "message": "CPI retrieved successfully",
    "success": true
}