/v1/inflation
Economies ranked by consumer inflation expectations
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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
…