Ir al contenido
GET /v1/inflation

Economies ranked by consumer inflation expectations

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/consumersurvey-api

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "note": "Economies ranked by the consumer inflation-expectations balance — the share of households expecting prices to rise faster over the next year minus those expecting them to rise more slowly. The higher the balance, the more inflation households are bracing for; central banks watch this closely because unanchored expectations can make inflation self-fulfilling. Each row carries its own month; discontinued series excluded. Monthly, cached a few hours.",
        "board": [
            {
                "code": "AUS",
                "name": "Australia",
                "change": 2,
                "period": "2026-05",
                "balance": 66,
                "is_aggregate": false
            },
            {
                "code": "COL",
                "name": "Colombia",
                "change": -1.8,
                "period": "2026-04",
                "balance": 59.5,
                "is_aggregate": false
            },
            {
                "code": "PRT",
                "name": "Portugal",
                "change": -9.2,
                "period": "2026-05",
                "balance": 58.5,
                "is_aggregate": false
            },
            {
                "code": "NLD",
                "name": "Netherlands",
                "change": -11.4,
                "period": "2026-05",
                "balance": 56.1,
                "is_aggregate": false
            },
            {
                "code": "SVN",
                "name": "Slovenia",
                "change": -15.4,
                "period": "2026-05",
                "balance": 55.2,
                "is_aggregate": false
            },
            {
                "code": "GRC",
                "name": "Greece",
                "change": -1.2,
                "period": "2026-05",
                "balance": 53.3,
                "is_aggregate": false
            },
            {
                "code": "LUX",
                "name": "Luxembourg",
                "change": 1.9,
                "period": "2026-05",
                "balance": 53,
                "is_aggregate": false
            },
            {
                "code": "TUR",
                "name": "Türkiye",
                "change": 4.4,
                "period": "2026-05",
                "balance": 52.7,
                "is_aggregate": false
            },
            {
                "code": "EST",
                "name": "Estonia",
                "change": 8.9,
                "period": "2026-04",
                "balance": 52.6,
                "is_aggregate": false
            },
            {
                "code": "KOR",
                "name": "Korea",
                "change": -2,
                "period": "2026-05",
                "balance": 51,
                "is_aggregate": false
            },
            {
                "code": "LTU",
                "name": "Lithuania",
                "change": -7.4,
                "period": "2026-0
…