/v1/sellingprices
Economies ranked by the selling-price balance (pipeline inflation)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/businesssurvey-api/v1/sellingprices" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/businesssurvey-api/v1/sellingprices", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/businesssurvey-api/v1/sellingprices");
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/businesssurvey-api/v1/sellingprices",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Economies ranked by the selling-price-expectations balance — the share of factories planning to raise prices minus those planning to cut. A leading gauge of pipeline inflation: a rising balance flags price pressure building before it shows in the CPI. Each row carries its own month; discontinued series excluded. Monthly, cached a few hours.",
"board": [
{
"code": "LUX",
"name": "Luxembourg",
"change": 17.8,
"period": "2026-05",
"balance": 57.2,
"is_aggregate": false
},
{
"code": "TUR",
"name": "Türkiye",
"change": -1.2,
"period": "2026-05",
"balance": 47.8,
"is_aggregate": false
},
{
"code": "COL",
"name": "Colombia",
"change": 4.7,
"period": "2026-04",
"balance": 47.8,
"is_aggregate": false
},
{
"code": "CHL",
"name": "Chile",
"change": -9.8,
"period": "2026-05",
"balance": 42.7,
"is_aggregate": false
},
{
"code": "IRL",
"name": "Ireland",
"change": -20.4,
"period": "2026-05",
"balance": 40.7,
"is_aggregate": false
},
{
"code": "FIN",
"name": "Finland",
"change": 2,
"period": "2026-05",
"balance": 36,
"is_aggregate": false
},
{
"code": "ROU",
"name": "Romania",
"change": -3.7,
"period": "2026-05",
"balance": 33.3,
"is_aggregate": false
},
{
"code": "DEU",
"name": "Germany",
"change": -2.3,
"period": "2026-05",
"balance": 30.9,
"is_aggregate": false
},
{
"code": "BEL",
"name": "Belgium",
"change": 2.6,
"period": "2026-05",
"balance": 30.5,
"is_aggregate": false
},
{
"code": "PRT",
"name": "Portugal",
"change": 0.7,
"period": "2026-05",
"balance": 29.2,
"is_aggregate": false
},
{
"code": "HUN",
"name": "Hungary",
"change": 3.3,
"period": "2026-05",
"balance": 29,
"is_aggregate": false
},
{
…