get https://open-api-v4.coinglass.com/api/spot/aggregated-taker-buy-sell-volume/history
该接口提供现货市场中币种的主动买入与卖出成交量的历史数据
该接口以下API等级可用: API 等级:
API 等级 | 爱好版 | 创业版 | 标准版 | 专业版 | 企业版 |
---|---|---|---|---|---|
可用性 | ✅ | ✅ | ✅ | ✅ | ✅ |
颗粒度 | >=4h | >=30m | 无限制 | 无限制 | 无限制 |
响应数据
{
"code": "0",
"msg": "success",
"data": [
{
"time": 1741622400000, // 时间戳(毫秒)
"aggregated_buy_volume_usd": 968834542.3787, // 聚合买单成交量(美元)
"aggregated_sell_volume_usd": 1054582654.8138 // 聚合卖单成交量(美元)
},
{
"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
}
]
}