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/cryptocom-api

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "asks": [
            {
                "price": 62665.62,
                "amount": 0.44814,
                "orders": 7
            },
            {
                "price": 62665.86,
                "amount": 0.04409,
                "orders": 2
            },
            {
                "price": 62665.87,
                "amount": 0.12955,
                "orders": 2
            },
            {
                "price": 62668.95,
                "amount": 0.06732,
                "orders": 2
            },
            {
                "price": 62668.96,
                "amount": 0.14912,
                "orders": 2
            },
            {
                "price": 62669.91,
                "amount": 0.00038,
                "orders": 1
            },
            {
                "price": 62670.18,
                "amount": 0.00077,
                "orders": 1
            },
            {
                "price": 62671.11,
                "amount": 0.09576,
                "orders": 1
            },
            {
                "price": 62672,
                "amount": 0.01356,
                "orders": 2
            },
            {
                "price": 62672.22,
                "amount": 0.01,
                "orders": 1
            },
            {
                "price": 62673.42,
                "amount": 0.14751,
                "orders": 2
            },
            {
                "price": 62673.43,
                "amount": 0.14254,
                "orders": 2
            },
            {
                "price": 62674.55,
                "amount": 0.05108,
                "orders": 1
            },
            {
                "price": 62674.88,
                "amount": 0.11702,
                "orders": 1
            },
            {
                "price": 62675.21,
                "amount": 0.02588,
                "orders": 1
            },
            {
                "price": 62675.22,
                "amount": 0.03,
                "orders": 1
            },
            {
                "price": 62675.23,
                "amount": 0.0367,
                "orders": 1
            },
            {
                "price": 62675.25,
                "amount": 0.02,
                "orders": 1
            },
            {
                "price": 62678.35,
                "amount": 0.03843,
                "orders": 1
            },
            {
                "price": 62679.24,
                "amount": 0.05108,
                "orders": 1
            }
        ],
        "bids": [
            {
                "price": 62665.61,
                "amount": 0.27196,
                "orders": 4
            },
            {
                "price": 62664.45,
                "amount": 0.0481,
                "orders": 1
            },
            {
                "price": 62664.42,
                "amount": 0.05615,
                "orders": 1
            },
            {
                "
…