Get Liquidation Order
Description
Get Liquidation Order Interface
HTTP Request
GET /v3/market/liquidationOrder
Request Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| sTime | No | String | Starting time of the candlestick, Unix timestamp format in milliseconds. |
| eTime | No | String | Ending time of the candlestick, Unix timestamp format in milliseconds. |
| symbol | No | String | A trading pair, consisting of two currencies: base currency and quote currency. |
| from | No | Long | ID for the query starts at 0 by default. |
| limit | No | Integer | Pagination size defaults to 10, with a maximum limit of 100. |
| direct | No | String | PREV, NEXT, The default is NEXT. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| symbol | String | A trading pair, consisting of two currencies: base currency and quote currency |
| side | String | BUY, SELL |
| posSide | String | The default value of position direction in buy and sell mode is BOTH, in opening and closing mode: LONG, SHORT |
| sz | String | liquidation quantity (pieces) |
| bkPx | String | Price of commissioned transaction |
| uTime | String | Completion time of liquidation order |
Response Example
{
"symbol": "BTC_USDT_PERP"
}
Response Example
{
"code": 200,
"msg": "success",
"data": [
{
"symbol": "BTCUSDTPERP",
"posSide": "SHORT",
"side": "BUY",
"sz": "13",
"bkPx": "68741.828000000000000000",
"uTime": "1730341275050"
},
{
"symbol": "BTCUSDTPERP",
"posSide": "SHORT",
"side": "BUY",
"sz": "3",
"bkPx": "71983.165000000000000000",
"uTime": "1730348730051"
},
{
"symbol": "BTCUSDTPERP",
"posSide": "SHORT",
"side": "BUY",
"sz": "15",
"bkPx": "80909.279000000000000000",
"uTime": "1730348740095"
}
]
}