Decrease Position Margin
POST
/draw
Withdraw margin from a position, increasing the leverage. Only relevant for Isolated Margin users.
POST /draw
curl \
-X POST https://api.everstrike.io/draw \
-H "x-api-key: $API_KEY"
Response example (200)
{
"code": 200,
"msg": "string",
"result": {
"balances": {
"BTC": {
"free": 21,
"locked": 2,
"withdrawn": 0
}
},
"positions": {
"USD_BTCCALL_PERP": {
"size": 1,
"free": 1,
"locked": 0,
"realized": 0,
"stats": {
"size": 1,
"notional": 0.14,
"margin": 1,
"pnl": 0,
"equity": 1,
"roe": 0,
"mark": 2.1,
"avg_entry": 3.4,
"leverage": 2.82,
"lp": 3.7,
"bankrupt": 3.78,
"direction": "BUY"
}
}
}
}
}
Response example (503)
{
"code": 503,
"msg": "Invalid request",
"result": {}
}