Naar de inhoud
GET /v1/book

Live market depth — best bid/ask and spread

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "asks": [
            {
                "price": 54282,
                "amount": 0.00066568
            },
            {
                "price": 54293,
                "amount": 0.0004606
            },
            {
                "price": 54294,
                "amount": 0.24722481
            },
            {
                "price": 54296,
                "amount": 0.04947276
            },
            {
                "price": 54300,
                "amount": 0.03508872
            },
            {
                "price": 54303,
                "amount": 0.15949205
            },
            {
                "price": 54304,
                "amount": 0.06377215
            },
            {
                "price": 54305,
                "amount": 0.75345315
            },
            {
                "price": 54306,
                "amount": 0.03127572
            },
            {
                "price": 54307,
                "amount": 0.01515276
            },
            {
                "price": 54308,
                "amount": 0.68962376
            },
            {
                "price": 54309,
                "amount": 0.38295
            },
            {
                "price": 54310,
                "amount": 0.06377215
            },
            {
                "price": 54311,
                "amount": 0.69321124
            },
            {
                "price": 54314,
                "amount": 0.24722481
            },
            {
                "price": 54315,
                "amount": 0.44570476
            },
            {
                "price": 54316,
                "amount": 0.39863282
            },
            {
                "price": 54317,
                "amount": 0.25111765
            },
            {
                "price": 54319,
                "amount": 0.00828439
            },
            {
                "price": 54320,
                "amount": 0.98262648
            }
        ],
        "bids": [
            {
                "price": 54281,
                "amount": 0.06700112
            },
            {
                "price": 54280,
                "amount": 0.28804652
            },
            {
                "price": 54279,
                "amount": 0.44524477
            },
            {
                "price": 54277,
                "amount": 0.24483955
            },
            {
                "price": 54276,
                "amount": 0.04320697
            },
            {
                "price": 54275,
                "amount": 0.68962376
            },
            {
                "price": 54273,
                "amount": 0.24483955
            },
            {
                "price": 54272,
                "amount": 0.52910501
            },
            {
                "price": 54271,
                "amount": 0.07979246
            },
            {
                "price": 54270,
                "amount": 0.24530011
            },
  
…