Skip to content
GET /v1/cpi/series

Inflation monthly series

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

Example response

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

{
    "data": {
        "count": 36,
        "region": "Moldova",
        "series": [
            {
                "period": "2023-06",
                "month_name": "June",
                "change_mom_pct": -0.53,
                "inflation_yoy_pct": 13.15
            },
            {
                "period": "2023-07",
                "month_name": "July",
                "change_mom_pct": -0.76,
                "inflation_yoy_pct": 10.76
            },
            {
                "period": "2023-08",
                "month_name": "August",
                "change_mom_pct": -0.08,
                "inflation_yoy_pct": 9.69
            },
            {
                "period": "2023-09",
                "month_name": "September",
                "change_mom_pct": 0.46,
                "inflation_yoy_pct": 8.63
            },
            {
                "period": "2023-10",
                "month_name": "October",
                "change_mom_pct": 0.46,
                "inflation_yoy_pct": 6.34
            },
            {
                "period": "2023-11",
                "month_name": "November",
                "change_mom_pct": 0.18,
                "inflation_yoy_pct": 5.45
            },
            {
                "period": "2023-12",
                "month_name": "December",
                "change_mom_pct": -0.44,
                "inflation_yoy_pct": 4.2
            },
            {
                "period": "2024-01",
                "month_name": "January",
                "change_mom_pct": 0.79,
                "inflation_yoy_pct": 4.55
            },
            {
                "period": "2024-02",
                "month_name": "February",
                "change_mom_pct": 0.71,
                "inflation_yoy_pct": 4.31
            },
            {
                "period": "2024-03",
                "month_name": "March",
                "change_mom_pct": 0.46,
                "inflation_yoy_pct": 3.94
            },
            {
                "period": "2024-04",
                "month_name": "April",
                "change_mom_pct": 1.78,
                "inflation_yoy_pct": 3.51
            },
            {
                "period": "2024-05",
                "month_name": "May",
                "change_mom_pct": 0.22,
                "inflation_yoy_pct": 3.28
            },
            {
                "period": "2024-06",
                "month_name": "June",
                "change_mom_pct": -0.06,
                "inflation_yoy_pct": 3.76
            },
            {
                "period": "2024-07",
                "month_name": "July",
                "change_mom_pct": 0.23,
                "inflation_yoy_pct": 4.8
            },
            {
                "period": "2024-08",
                "month_name": "August",
                "change_mom_pct": 0.21,
                "inflation_yoy_pct": 5.1
            },
            {
                "period": "2024-09",
                "month_name": "September"
…