get https://open-api-v4.coinglass.com/api/exchange/balance/chart
This endpoint provides historical chart data of exchange asset balances over time, along with corresponding price data.
This endpoint is available on the following API plans:
Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
---|---|---|---|---|---|
Available | ✅ | ✅ | ✅ | ✅ | ✅ |
Response Data
{
"code": "0",
"msg": "success",
"data": [
{
"time_list": [1691460000000, ...], // Array of timestamps (in milliseconds)
"price_list": [29140.9, ...], // Array of prices corresponding to each timestamp
"data_map": { // Balance data by exchange
"huobi": [15167.03527, ...], // Balance data from Huobi exchange
"gate": [23412.723, ...], // Balance data from Gate exchange
...
}
}
]
}