get https://open-api-v4.coinglass.com/api/futures/liquidation/aggregated-history
This endpoint provides aggregated historical data for both long and short liquidations of a coin across multiple exchanges.
This endpoint is available on the following API plans:
Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
---|---|---|---|---|---|
Available | ✅ | ✅ | ✅ | ✅ | ✅ |
interval Limit | >=4h | >=30m | No Limit | No Limit | No Limit |
Response Data
{
"code": "0",
"msg": "success",
"data": [
{
"time": 1658966400000, // Timestamp (milliseconds)
"aggregated_long_liquidation_usd": 5916885.14234,//aggregated Long position liquidation amount (USD)
"aggregated_short_liquidation_usd": 12969583.87632 //aggregated Short position liquidation amount (USD)
},
{
"time": 1659052800000, // Timestamp (milliseconds)
"aggregated_long_liquidation_usd": 5345708.23191, //aggregated Long position liquidation amount (USD)
"aggregated_short_liquidation_usd": 6454875.54909 //aggregated Short position liquidation amount (USD)
},
]
}