Skip to content
GET /v1/cpi/core

Core inflation measures

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/moldova-cpi-api

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

Get an API key

Code snippets

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

Example response

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

{
    "data": {
        "count": 4,
        "period": "2026-05",
        "region": "Moldova",
        "source": "NBS Moldova PRE012800",
        "measures": [
            {
                "measure": "Total CPI excluding food and beverages, energy products, products and services with regulated prices",
                "change_mom_pct": 0.39,
                "inflation_yoy_pct": 4.97
            },
            {
                "measure": "Total CPI excludin food and beverages",
                "change_mom_pct": 0.33,
                "inflation_yoy_pct": 7.35
            },
            {
                "measure": "Total CPI excluding products and services with regulated prices",
                "change_mom_pct": 0.31,
                "inflation_yoy_pct": 6.85
            },
            {
                "measure": "Total CPI excluding fuels",
                "change_mom_pct": 0.44,
                "inflation_yoy_pct": 5.43
            }
        ],
        "indicator": "Core inflation indices (latest month)",
        "month_name": "May"
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:26.670Z",
        "request_id": "19d52172-9c22-4a65-8be8-544e73021d91"
    },
    "status": "ok",
    "message": "Moldova core inflation retrieved",
    "success": true
}