get
https://open-api-v4.coinglass.com/api/futures/volume/exchange-history-chart
This endpoint retrieves historical Futures trading volume data across exchanges, formatted for chart display.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Cache / Update Frequency: Updated daily around 01:00 UTC..
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": [1721649600000, ...], // List of timestamps (in milliseconds)
"price_list": [67490.3, ...], // List of prices corresponding to each timestamp
"data_map": { // Volume data of futures from each exchange
"Binance": [8018229234, ...], // Binance Volume (corresponds to time_list)
"Bitmex": [395160842, ...] // BitMEX Volume (corresponds to time_list)
// ...
}
}
}
200