Get Margin Call Information
GET: /v1/future-u/trade/position/break-list
Parameters
Parameter | Type | mandatory | Default | Description | Ranges |
---|---|---|---|---|---|
symbol | string | false | N/A | Trading pair (see the margin call of all trading pairs if don't pass parameters) |
Limit Flow Rules
200/s/apikey
Response
{
"msgInfo": {
"code": "",
"msg": ""
},
"msg": "",
"data": [
{
"breakPrice": 0, //Margin call price. 0 means no margin call
"calMarkPrice": 0, //Mark price
"contractType": "", //Futures type: PERPETUAL;PREDICT
"entryPrice": 0, //Open position average price
"isolatedMargin": 0,//Isolated Margin
"leverage": 0, //Leverage
"positionSide": "", //Position side:LONG;SHORT
"positionSize": 0, //Position quantity (Cont)
"positionType": "", //Position type:CROSSED;ISOLATED
"symbol": "" //Symbol
}
],
"code": 200
}