/v1/cpi
Latest Icelandic CPI and inflation
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/iceland-stats-api/v1/cpi" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/iceland-stats-api/v1/cpi", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/iceland-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/iceland-stats-api/v1/cpi",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"base": "1988=100",
"latest": {
"month": "2026M05",
"index_value": 684.3,
"change_annual_pct": 5.1,
"change_monthly_pct": 0.07
},
"series": [
{
"month": "2026M05",
"index_value": 684.3,
"change_annual_pct": 5.1,
"change_monthly_pct": 0.07
},
{
"month": "2026M04",
"index_value": 683.8,
"change_annual_pct": 5.2,
"change_monthly_pct": 0.81
},
{
"month": "2026M03",
"index_value": 678.3,
"change_annual_pct": 5.4,
"change_monthly_pct": 0.55
},
{
"month": "2026M02",
"index_value": 674.6,
"change_annual_pct": 5.2,
"change_monthly_pct": 0.94
},
{
"month": "2026M01",
"index_value": 668.3,
"change_annual_pct": 5.2,
"change_monthly_pct": 0.38
},
{
"month": "2025M12",
"index_value": 665.8,
"change_annual_pct": 4.5,
"change_monthly_pct": 1.15
},
{
"month": "2025M11",
"index_value": 658.2,
"change_annual_pct": 3.7,
"change_monthly_pct": -0.48
},
{
"month": "2025M10",
"index_value": 661.4,
"change_annual_pct": 4.3,
"change_monthly_pct": 0.47
},
{
"month": "2025M09",
"index_value": 658.3,
"change_annual_pct": 4.1,
"change_monthly_pct": 0.11
},
{
"month": "2025M08",
"index_value": 657.6,
"change_annual_pct": 3.8,
"change_monthly_pct": -0.15
},
{
"month": "2025M07",
"index_value": 658.6,
"change_annual_pct": 4,
"change_monthly_pct": 0.32
},
{
"month": "2025M06",
"index_value": 656.5,
"change_annual_pct": 4.2,
"change_monthly_pct": 0.84
}
],
"measure": "CPI",
"measure_label": "Consumer price index"
},
"meta": {
"timestamp": "2026-06-15T11:14:45.718Z",
"request_id": "84a08326-df67-4964-8248-07183f642e3b"
},
"status": "ok",
"message": "CPI retrieved successfully",
"success": true
}