get
https://open-api-v4.coinglass.com/api/exchange/balance/chart
該接口提供各交易所資產餘額隨時間變化的歷史圖表數據,並附帶相應的幣種價格數據。
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
該接口以下 API 等級可用: API 等級:
| API 等級 | 業餘版 | 創業版 | 標準版 | 專業版 | 企業版 |
|---|---|---|---|---|---|
| 可用性 | ✅ | ✅ | ✅ | ✅ | ✅ |
響應數據
{
"code": "0",
"msg": "success",
"data": [
{
"time_list": [1691460000000, ...], // 時間戳數組(毫秒)
"price_list": [29140.9, ...], // 對應時間點的價格數組
"data_map": { // 各交易所的餘額數據
"huobi": [15167.03527, ...], // Huobi 交易所的餘額數據
"gate": [23412.723, ...], // Gate 交易所的餘額數據
...
}
}
]
}