Ir al contenido
GET /v1/cpi/series

Inflation monthly series

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/moldova-cpi-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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"
…