Skip to content
GET /v1/core

Economies ranked by core CPI inflation (ex food & energy)

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/cpiinflation-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/cpiinflation-api/v1/core" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cpiinflation-api/v1/core", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cpiinflation-api/v1/core");
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/cpiinflation-api/v1/core",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "Economies ranked by core consumer-price inflation — all items excluding food and energy, the measure central banks really steer by because it strips out the two most volatile components and reveals underlying price pressure. The headline rate is shown alongside. Each row carries its own month; discontinued series excluded. Pass countries_only=true to drop aggregates. Monthly, cached a few hours.",
        "board": [
            {
                "code": "TUR",
                "core": 32.04,
                "food": 28.31,
                "name": "Türkiye",
                "energy": 29.39,
                "period": "2025-12",
                "headline": 30.89,
                "services": null,
                "is_aggregate": false
            },
            {
                "code": "COL",
                "core": 6.28,
                "food": 6.7,
                "name": "Colombia",
                "energy": -1.78,
                "period": "2026-04",
                "headline": 5.68,
                "services": 7.31,
                "is_aggregate": false
            },
            {
                "code": "EST",
                "core": 5.78,
                "food": 5.58,
                "name": "Estonia",
                "energy": -4.99,
                "period": "2025-12",
                "headline": 4.08,
                "services": 10.03,
                "is_aggregate": false
            },
            {
                "code": "HUN",
                "core": 5.08,
                "food": -0.3,
                "name": "Hungary",
                "energy": -2.12,
                "period": "2025-12",
                "headline": 3.3,
                "services": 7.5,
                "is_aggregate": false
            },
            {
                "code": "BGR",
                "core": 4.96,
                "food": 5.6,
                "name": "Bulgaria",
                "energy": 3.58,
                "period": "2025-12",
                "headline": 4.95,
                "services": null,
                "is_aggregate": false
            },
            {
                "code": "SVK",
                "core": 4.85,
                "food": 2.78,
                "name": "Slovak Republic",
                "energy": 0.25,
                "period": "2025-12",
                "headline": 3.87,
                "services": 5.07,
                "is_aggregate": false
            },
            {
                "code": "LTU",
                "core": 4.26,
                "food": 4.05,
                "name": "Lithuania",
                "energy": -1.44,
                "period": "2025-12",
                "headline": 3.45,
                "services": 5.69,
                "is_aggregate": false
            },
            {
                "code": "ISL",
                "core": 4.26,
                "food": 5.49,
                "name": "Iceland",
                "energy": 4.89,
                "period": "2025-12",
           
…