/v1/board
Live order book — mid price and top bids/asks
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/bitflyer-api/v1/board" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitflyer-api/v1/board", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitflyer-api/v1/board");
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/bitflyer-api/v1/board",
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": 0.3401,
"price": 9864674
},
{
"size": 0.2113,
"price": 9865712
},
{
"size": 0.02,
"price": 9866240
},
{
"size": 0.25380877,
"price": 9866241
},
{
"size": 0.02,
"price": 9866398
},
{
"size": 0.6544,
"price": 9866703
},
{
"size": 0.02,
"price": 9867792
},
{
"size": 0.052488,
"price": 9867793
},
{
"size": 0.0864981,
"price": 9867995
},
{
"size": 0.02665051,
"price": 9868384
},
{
"size": 0.0050187,
"price": 9868691
},
{
"size": 1.35369856,
"price": 9869180
},
{
"size": 0.6648,
"price": 9869181
},
{
"size": 0.6,
"price": 9870348
},
{
"size": 0.7686,
"price": 9871659
},
{
"size": 1.189881,
"price": 9873447
},
{
"size": 1.189881,
"price": 9873757
},
{
"size": 0.054239,
"price": 9873809
},
{
"size": 0.6494,
"price": 9874137
},
{
"size": 0.00100197,
"price": 9880000
}
],
"bids": [
{
"size": 0.0836242,
"price": 9856332
},
{
"size": 0.0185904,
"price": 9856331
},
{
"size": 0.1628,
"price": 9856329
},
{
"size": 0.0175248,
"price": 9855995
},
{
"size": 0.0186192,
"price": 9855980
},
{
"size": 0.5,
"price": 9854917
},
{
"size": 0.018432,
"price": 9854662
},
{
"size": 0.25578063,
"price": 9854408
},
{
"size": 0.001,
"price": 9854178
},
{
"size": 1.58939802,
"price": 9853003
},
{
"size": 0.052488,
"price": 985300
…