get https://open-api-v3.coinglass.com/api/futures/liquidation/order
This API retrieves liquidation orders within the past 7 days, including details about the specific exchange, trading pairs, and liquidation amounts
# Required Account Level: Standard Edition and Above
Response Data
{
"code": "0",
"msg": "success",
"data": [
{
"exName": "Huobi",
"symbol": "ALGO-USDT",
"baseAsset": "ALGO",
"price": 0.11032,
"volUsd": 146.7256,
"side": 1,
"time": 1722935008714
},
...
]
}
Field | Description |
---|---|
exName | Exchange name eg. Binance ,OKX |
symbol | Pair eg. BTCUSDT |
baseAsset | Symbol of the coin eg. BTC |
price | Lliquidation pirce |
volUsd | Liquidation value in USD |
side | Type=1 Long liquidation Type=2 Short liquidation |
time | In millisecond eg.1641522717000 |