Zum Inhalt springen
GET /v1/orderbook

Live market depth — top bids and asks

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "asks": [
            {
                "price": 1023835,
                "volume": 0.0878
            },
            {
                "price": 1023836,
                "volume": 0.02575
            },
            {
                "price": 1023849,
                "volume": 0.012759
            },
            {
                "price": 1023863,
                "volume": 0.012484
            },
            {
                "price": 1023947,
                "volume": 0.007145
            },
            {
                "price": 1023951,
                "volume": 0.056141
            },
            {
                "price": 1024008,
                "volume": 0.006992
            },
            {
                "price": 1024102,
                "volume": 0.000977
            },
            {
                "price": 1024227,
                "volume": 0.006969
            },
            {
                "price": 1024558,
                "volume": 0.053104
            },
            {
                "price": 1024560,
                "volume": 0.146939
            },
            {
                "price": 1024705,
                "volume": 0.01764
            },
            {
                "price": 1024809,
                "volume": 0.055675
            },
            {
                "price": 1025015,
                "volume": 0.5465
            },
            {
                "price": 1025030,
                "volume": 0.00731
            },
            {
                "price": 1025370,
                "volume": 0.000348
            },
            {
                "price": 1025406,
                "volume": 0.000122
            },
            {
                "price": 1025415,
                "volume": 0.000509
            },
            {
                "price": 1025831,
                "volume": 0.000431
            },
            {
                "price": 1025867,
                "volume": 0.000152
            }
        ],
        "bids": [
            {
                "price": 1023444,
                "volume": 0.00073
            },
            {
                "price": 1022834,
                "volume": 0.150316
            },
            {
                "price": 1022833,
                "volume": 0.046242
            },
            {
                "price": 1022770,
                "volume": 0.001367
            },
            {
                "price": 1022034,
                "volume": 0.062333
            },
            {
                "price": 1021983,
                "volume": 0.0515
            },
            {
                "price": 1021912,
                "volume": 0.044338
            },
            {
                "price": 1021902,
                "volume": 0.000977
            },
            {
                "price": 1021740,
                "volume": 0.004397
            },
            {
                "price": 1021302,
                "volume": 0.000977
            },
        
…