/v1/cpi
Latest Finnish CPI and inflation
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"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
}