get https://open-api-v4.coinglass.com/api/futures/taker-buy-sell-volume/history
This endpoint provides historical data for the long/short ratio of taker buy and sell volumes in futures markets.
This endpoint is available on the following API plans:
Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
---|---|---|---|---|---|
Available | ✅ | ✅ | ✅ | ✅ | ✅ |
interval Limit | >=4h | >=30m | No Limit | No Limit | No Limit |
Response Data
{
"code": "0",
"msg": "success",
"data": [
{
"time": 1741622400000, // Timestamp in milliseconds
"taker_buy_volume_usd": "10551.033", // Taker buy volume (USD)
"taker_sell_volume_usd": "11308" // Taker sell volume (USD)
},
{
"time": 1741626000000,
"taker_buy_volume_usd": "15484.245",
"taker_sell_volume_usd": "16316.118"
},
{
"time": 1741629600000,
"taker_buy_volume_usd": "20340.501",
"taker_sell_volume_usd": "18977.660"
}
]
}