/v1/book
Live order-book depth
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/poloniex-api/v1/book" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/poloniex-api/v1/book", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/poloniex-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/poloniex-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": 62765,
"amount": 0.016774
},
{
"price": 62766.74,
"amount": 1.6e-5
},
{
"price": 62766.94,
"amount": 1.6e-5
},
{
"price": 62767.14,
"amount": 1.6e-5
},
{
"price": 62767.34,
"amount": 1.6e-5
},
{
"price": 62767.54,
"amount": 1.6e-5
},
{
"price": 62767.74,
"amount": 1.6e-5
},
{
"price": 62767.94,
"amount": 1.6e-5
},
{
"price": 62768.14,
"amount": 1.6e-5
},
{
"price": 62782.51,
"amount": 0.007871
}
],
"bids": [
{
"price": 62747.74,
"amount": 0.000123
},
{
"price": 62744.6,
"amount": 0.000123
},
{
"price": 62735.19,
"amount": 0.005367
},
{
"price": 62732.06,
"amount": 0.005471
},
{
"price": 62721.67,
"amount": 0.000797
},
{
"price": 62710.91,
"amount": 0.001594
},
{
"price": 62710.9,
"amount": 0.000239
},
{
"price": 62708.91,
"amount": 0.000239
},
{
"price": 62707.57,
"amount": 0.08515
},
{
"price": 62692.61,
"amount": 0.003423
}
],
"market": "BTC_USDT",
"source": "Poloniex",
"spread": 17.26,
"best_ask": 62765,
"best_bid": 62747.74,
"timestamp": 1781164157539,
"spread_pct": 0.0275
},
"meta": {
"timestamp": "2026-06-11T07:49:17.967Z",
"request_id": "12bf1cff-ccf2-47a9-b06a-e5f755b669be"
},
"status": "ok",
"message": "Order book retrieved successfully",
"success": true
}