Zum Inhalt springen
GET /v1/orderbooks

Economies ranked by the order-books balance (current demand)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/businesssurvey-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/businesssurvey-api/v1/orderbooks" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/businesssurvey-api/v1/orderbooks", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/businesssurvey-api/v1/orderbooks");
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/orderbooks",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Economies ranked by the manufacturing order-books balance — the share of factories reporting full order books minus those reporting thin ones. A positive balance means demand is strong; it leads production. Each row carries its own month; discontinued series excluded. Monthly, cached a few hours.",
        "board": [
            {
                "code": "IRL",
                "name": "Ireland",
                "change": 10.7,
                "period": "2026-05",
                "balance": 9.4,
                "is_aggregate": false
            },
            {
                "code": "USA",
                "name": "United States",
                "change": 1,
                "period": "2026-05",
                "balance": 4,
                "is_aggregate": false
            },
            {
                "code": "GRC",
                "name": "Greece",
                "change": 7,
                "period": "2026-05",
                "balance": 0.4,
                "is_aggregate": false
            },
            {
                "code": "HRV",
                "name": "Croatia",
                "change": 3.2,
                "period": "2026-05",
                "balance": -0.1,
                "is_aggregate": false
            },
            {
                "code": "BRA",
                "name": "Brazil",
                "change": 3.7,
                "period": "2026-05",
                "balance": -3.4,
                "is_aggregate": false
            },
            {
                "code": "NLD",
                "name": "Netherlands",
                "change": 0.9,
                "period": "2026-05",
                "balance": -5.2,
                "is_aggregate": false
            },
            {
                "code": "GBR",
                "name": "United Kingdom",
                "change": 18.9,
                "period": "2026-05",
                "balance": -7.2,
                "is_aggregate": false
            },
            {
                "code": "ESP",
                "name": "Spain",
                "change": 2.1,
                "period": "2026-05",
                "balance": -7.7,
                "is_aggregate": false
            },
            {
                "code": "CZE",
                "name": "Czechia",
                "change": 2,
                "period": "2026-05",
                "balance": -8.8,
                "is_aggregate": false
            },
            {
                "code": "SVK",
                "name": "Slovak Republic",
                "change": -10,
                "period": "2026-05",
                "balance": -10,
                "is_aggregate": false
            },
            {
                "code": "ROU",
                "name": "Romania",
                "change": -0.4,
                "period": "2026-05",
                "balance": -11.2,
                "is_aggregate": false
            },
            {
                "code": "PRT",
                
…