get https://open-api-v3.coinglass.com/api/orderbook/history
The API retrieves historical data of the order book for futures trading.
# Required Account Level: Standard Edition and Above
Response Data
{
"code": "0",
"msg": "success",
"data": [
[
1723611600,
[
[
56420, //Price
4.777 //Quantity
],
[
40300,
2.191
]
],
[
[
56420,
4.777
],
[
40300,
2.191
]
]
]
],
"success": true
}
Field | Description |
---|---|
array[0] | Time ,in seconds |
array[1] | Bids |
array[2] | Asks |