get https://open-api-v4.coinglass.com/api/spot/orderbook/history
This endpoint provides historical order book depth data for spot trading, supporting heatmap visualization.
Cache / Update Frequency: Real time for all the API plans.
This endpoint is available on the following API plans:
Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
---|---|---|---|---|---|
Available | ❌ | ❌ | ✅ | ✅ | ✅ |
Response Data
{
"code": "0",
"msg": "success",
"data": [
[
1723611600,
[
[
56420, //Price
4.777 //Quantity
],
[
40300,
2.191
]
],
[
[
56420,
4.777
],
[
40300,
2.191
]
]
]
],
"success": true
}