/v1/orderbook
Order-book depth for a symbol
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/coinstore-api/v1/orderbook" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinstore-api/v1/orderbook", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinstore-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/coinstore-api/v1/orderbook",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"asks": [
{
"size": 0.003,
"price": 65914.54
},
{
"size": 0.012,
"price": 65914.78
},
{
"size": 0.005,
"price": 65915.2
},
{
"size": 0.003,
"price": 65915.67
},
{
"size": 0.003,
"price": 65916.06
}
],
"bids": [
{
"size": 1.208961,
"price": 65914.28
},
{
"size": 0.035156,
"price": 65913.68
},
{
"size": 0.002928,
"price": 65913.33
},
{
"size": 0.02336,
"price": 65912.84
},
{
"size": 0.004957,
"price": 65912.41
}
],
"depth": {
"asks": 5,
"bids": 5
},
"spread": 0.26,
"symbol": "BTCUSDT",
"best_ask": 65914.54,
"best_bid": 65914.28,
"last_price": 65914.54
},
"meta": {
"timestamp": "2026-06-15T11:15:12.712Z",
"request_id": "83ac44f8-5969-4d77-ac85-cc08d4b0cda8"
},
"status": "ok",
"message": "Order book retrieved successfully",
"success": true
}