get https://open-api-v4.coinglass.com/api/spot/aggregated-taker-buy-sell-volume/history
This endpoint provides historical data for the long/short ratio of aggregated taker buy and sell volumes for spot cryptocurrencies.
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
"aggregated_buy_volume_usd": 968834542.3787, // Aggregated buy volume (USD)
"aggregated_sell_volume_usd": 1054582654.8138 // Aggregated sell volume (USD)
},
{
"time": 1741626000000,
"aggregated_buy_volume_usd": 1430620763.2041,
"aggregated_sell_volume_usd": 1559166911.2821
},
{
"time": 1741629600000,
"aggregated_buy_volume_usd": 1897261721.0129,
"aggregated_sell_volume_usd": 2003812276.7812
}
]
}