Zum Inhalt springen
GET /v1/book

Live order-book depth

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "asks": [
            {
                "price": 62713,
                "amount": 0.07974498
            },
            {
                "price": 62714,
                "amount": 0.0002934
            },
            {
                "price": 62721,
                "amount": 0.0221541
            },
            {
                "price": 62722,
                "amount": 0.00020466
            },
            {
                "price": 62733,
                "amount": 0.00012086
            },
            {
                "price": 62734,
                "amount": 0.02391047
            },
            {
                "price": 62737,
                "amount": 0.15582078
            },
            {
                "price": 62738,
                "amount": 0.0478179
            },
            {
                "price": 62739,
                "amount": 0.04781714
            },
            {
                "price": 62740,
                "amount": 0.04781638
            },
            {
                "price": 62741,
                "amount": 0.47815622
            },
            {
                "price": 62742,
                "amount": 0.79691434
            },
            {
                "price": 62752,
                "amount": 0.79678735
            },
            {
                "price": 62757,
                "amount": 0.1033
            },
            {
                "price": 62758,
                "amount": 2.27401255
            },
            {
                "price": 62761,
                "amount": 0.81401965
            },
            {
                "price": 62763,
                "amount": 0.7977477
            },
            {
                "price": 62766,
                "amount": 0.95340925
            },
            {
                "price": 62769,
                "amount": 1.29726177
            },
            {
                "price": 62774,
                "amount": 1.57078082
            }
        ],
        "bids": [
            {
                "price": 62712,
                "amount": 1.66398416
            },
            {
                "price": 62703,
                "amount": 0.79741001
            },
            {
                "price": 62699,
                "amount": 0.00831589
            },
            {
                "price": 62697,
                "amount": 0.02392458
            },
            {
                "price": 62694,
                "amount": 0.02392573
            },
            {
                "price": 62690,
                "amount": 0.1033
            },
            {
                "price": 62689,
                "amount": 0.00832464
            },
            {
                "price": 62680,
                "amount": 0.00277427
            },
            {
                "price": 62673,
                "amount": 0.79779171
            },
            {
                "price": 62660,
                "amount": 0.00277434
            },
          
…