get
https://open-api-v4.coinglass.com/api/futures/volume/exchange-history-chart
此接口用于获取各交易所的历史合约交易量数据,并以图表格式展示。
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
缓存 / 更新频率: 每日约 UTC 01:00 更新
该接口以下API等级可用: API 等级:
| API 等级 | 爱好版 | 创业版 | 标准版 | 专业版 | 企业版 |
|---|---|---|---|---|---|
| 可用性 | ❌ | ❌ | ✅ | ✅ | ✅ |
响应数据
{
"code": "0",
"msg": "success",
"data": {
"time_list": [1721649600000, ...], // 时间戳列表(毫秒)
"price_list": [67490.3, ...], // 价格列表(与 time_list 对应)
"data_map": { // 各交易所合约成交量数据
"Binance": [8018229234, ...], // Binance 合约成交量(与 time_list 对应)
"Bitmex": [395160842, ...] // BitMEX 合约成交量(与 time_list 对应)
// ...
}
}
} 200