/v1/business
Business Confidence Indicator for every economy, ranked
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/confidence-api/v1/business" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/confidence-api/v1/business", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/confidence-api/v1/business");
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/confidence-api/v1/business",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "The OECD amplitude-adjusted Business Confidence Indicator (BCI) for every tracked economy (and aggregates unless countries_only=true), ranked. The index oscillates around 100: above 100 = confidence above its long-term average (optimism), below 100 = pessimism; direction gives whether sentiment is improving or deteriorating. Survey-based soft data, leads the hard data. Each row carries its own period (economies report with a varying lag); discontinued series are excluded. Monthly, cached a few hours.",
"board": [
{
"code": "HRV",
"mood": "optimism",
"name": "Croatia",
"value": 101.877,
"change": 0.497,
"period": "2026-04",
"reading": "optimistic and improving",
"previous": 101.38,
"direction": "rising",
"is_aggregate": false
},
{
"code": "ISR",
"mood": "optimism",
"name": "Israel",
"value": 101.724,
"change": -0.381,
"period": "2026-03",
"reading": "optimistic but softening",
"previous": 102.105,
"direction": "falling",
"is_aggregate": false
},
{
"code": "GRC",
"mood": "optimism",
"name": "Greece",
"value": 101.632,
"change": -0.144,
"period": "2026-04",
"reading": "optimistic but softening",
"previous": 101.776,
"direction": "falling",
"is_aggregate": false
},
{
"code": "LTU",
"mood": "optimism",
"name": "Lithuania",
"value": 101.59,
"change": 0.005,
"period": "2026-04",
"reading": "optimistic and improving",
"previous": 101.585,
"direction": "rising",
"is_aggregate": false
},
{
"code": "IRL",
"mood": "optimism",
"name": "Ireland",
"value": 101.491,
"change": -0.05,
"period": "2026-04",
"reading": "optimistic but softening",
"previous": 101.54,
"direction": "falling",
"is_aggregate": false
},
{
"code": "LVA",
"mood": "optimism",
"name": "Latvia",
"value": 101.36,
"change": 0.023,
"period": "2026-04",
"reading": "optimistic and improving",
"previous": 101.336,
"direction": "rising",
"is_aggregate": false
},
{
…