Vai al contenuto
GET /v1/inflation

Economies ranked by consumer inflation expectations

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/consumersurvey-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

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