Get Leverage
Description:
Get the list of leverage.
HTTP Request
GET /v3/position/leverages
Request Parameters
| Parameter | Required | Type | Description |
|---|---|---|---|
| symbol | Yes | String | A trading pair, consisting of two currencies: base currency and quote currency |
| mgnMode | No | String | Margin Modes: CROSS: cross margin; ISOLATED: isolated margin |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| symbol | String | A trading pair, consisting of two currencies: base currency and quote currency |
| mgnMode | String | Margin Modes: CROSS: cross margin; ISOLATED: isolated margin |
| posSide | String | Position side LONG SHORT BOTH |
| lever | String | Leverage |
Request Example
{
"symbol": "COMBO_USDT_PERP"
}
Response Example
{
"code": 200,
"data": [
{
"lever": "4",
"mgnMode": "CROSS",
"posSide": "SHORT",
"symbol": "COMBO_USDT_PERP"
},
{
"lever": "4",
"mgnMode": "CROSS",
"posSide": "LONG",
"symbol": "COMBO_USDT_PERP"
},
{
"lever": "10",
"mgnMode": "ISOLATED",
"posSide": "SHORT",
"symbol": "COMBO_USDT_PERP"
},
{
"lever": "13",
"mgnMode": "ISOLATED",
"posSide": "LONG",
"symbol": "COMBO_USDT_PERP"
}
],
"msg": ""
}