Naar de inhoud
GET /v1/business

Business Confidence Indicator for every economy, ranked

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/confidence-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
            },
            {
  
…