get https://open-api-v4.coinglass.com/api/futures/liquidation/coin-list
This endpoint provides liquidation data for all coins on a specific exchange.
This endpoint is available on the following API plans:
Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
---|---|---|---|---|---|
Available | ❌ | ✅ | ✅ | ✅ | ✅ |
Response Data
{
"code": "0",
"msg": "success",
"data": [
{
"symbol": "BTC", // Token symbol
"liquidation_usd_24h": 82280481.50425325, // Total liquidation amount in the past 24 hours (USD)
"long_liquidation_usd_24h": 68437447.33734027, // Long position liquidation in the past 24 hours (USD)
"short_liquidation_usd_24h": 13843034.16691298, // Short position liquidation in the past 24 hours (USD)
"liquidation_usd_12h": 68331844.36224127, // Total liquidation in the past 12 hours
"long_liquidation_usd_12h": 66614158.47451427, // Long liquidation (12h)
"short_liquidation_usd_12h": 1717685.887727, // Short liquidation (12h)
"liquidation_usd_4h": 11381137.080643, // Total liquidation in the past 4 hours
"long_liquidation_usd_4h": 10921633.272973, // Long liquidation (4h)
"short_liquidation_usd_4h": 459503.80767, // Short liquidation (4h)
"liquidation_usd_1h": 3283635.95309, // Total liquidation in the past 1 hour
"long_liquidation_usd_1h": 3182915.16289, // Long liquidation (1h)
"short_liquidation_usd_1h": 100720.7902 // Short liquidation (1h)
}
]
}