/v1/orderbook
Live order book
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/bitunix-api/v1/orderbook" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitunix-api/v1/orderbook", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitunix-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/bitunix-api/v1/orderbook",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"asks": [
{
"size": 29.543,
"price": 1740.66
},
{
"size": 10.696,
"price": 1740.67
},
{
"size": 16.917,
"price": 1740.68
},
{
"size": 29.06,
"price": 1740.69
},
{
"size": 35.451,
"price": 1740.7
},
{
"size": 16.101,
"price": 1740.72
},
{
"size": 34.763,
"price": 1740.73
},
{
"size": 37.06,
"price": 1740.74
},
{
"size": 16.918,
"price": 1740.75
},
{
"size": 12.584,
"price": 1740.76
},
{
"size": 17.909,
"price": 1740.77
},
{
"size": 45.334,
"price": 1740.78
},
{
"size": 40.521,
"price": 1740.79
},
{
"size": 31.922,
"price": 1740.8
},
{
"size": 19.167,
"price": 1740.81
}
],
"bids": [
{
"size": 23.561,
"price": 1740.65
},
{
"size": 25.139,
"price": 1740.64
},
{
"size": 12.353,
"price": 1740.63
},
{
"size": 12.413,
"price": 1740.62
},
{
"size": 34.984,
"price": 1740.61
},
{
"size": 12.509,
"price": 1740.59
},
{
"size": 42.311,
"price": 1740.58
},
{
"size": 31.06,
"price": 1740.57
},
{
"size": 25.954,
"price": 1740.56
},
{
"size": 15.39,
"price": 1740.55
},
{
"size": 43.768,
"price": 1740.54
},
{
"size": 50.888,
"price": 1740.53
},
{
"size": 44.402,
"price": 1740.52
},
{
"size": 31.265,
"price": 1740.51
},
{
"size": 30.004,
"price": 1740.5
}
],
"symbol": "ETHUSDT"
},
"meta": {
"timestamp": "2026-06-15T11:15:34.681Z",
"request_
…