Get Futures Risk Limit
Description
Retrieve information from the Futures Risk Limit Table.
HTTP Request
GET /v3/market/riskLimit
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 |
tier | No | String | Tier |
Response Parameters
Parameter | Type | Description |
---|---|---|
symbol | String | a valid contract code. e.g. BTCUSDTPERP |
mgnMode | String | Margin Mode, Enumerate: ISOLATED , CROSS |
tier | String | Tiers |
maxlever | String | Maximum available leverage |
mMRatio | String | Maintenance margin requirement rate |
maxSize | String | The maximum borrowing size |
minSize | String | The minimum borrowing size |
Request Example
{
"symbol": "BTC_USDT_PERP",
"mgnMode": "CROSS",
"tier": "1"
}
Response Example
{
"code": 200,
"msg": "Success",
"data": [
{
"symbol": "BTC_USDT_PERP",
"mgnMode": "CROSS",
"tier": "1",
"maxLever": "100",
"mMRatio": "0.025",
"maxSize": "1000",
"minSize": "1"
},
{
"symbol": "BTC_USDT_PERP",
"mgnMode": "CROSS",
"tier": "2",
"maxLever": "75",
"mMRatio": "0.030",
"maxSize": "3000",
"minSize": "1001"
}
]
}