Risk Limit
Get Futures Risk Limit Level
This interface can be used to obtain information about risk limit level of a specific contract(Only valid for isolated Margin)
HTTP REQUEST
GET /api/v1/contracts/risk-limit/{symbol}
Example
GET /api/v1/contracts/risk-limit/ADAUSDTM
{
"code": "200000",
"data": [
{
"symbol": "ADAUSDTM",
"level": 1,
"maxRiskLimit": 500, // Upper limit (includes)
"minRiskLimit": 0, // Lower limit
"maxLeverage": 20, // Max leverage
"initialMargin": 0.05, // Initial margin rate
"maintainMargin": 0.025 // Maintenance margin rate
},
{
"symbol": "ADAUSDTM",
"level": 2,
"maxRiskLimit": 1000,
"minRiskLimit": 500,
"maxLeverage": 2,
"initialMargin": 0.5,
"maintainMargin": 0.25
}
]
}
REQUEST URL
This endpoint support Futures URL
REQUEST RATE LIMIT
Public weight
:5
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
symbol | String | Yes | Path parameter. Symbol of the contract. |
RESPONSES
Param | Description |
---|---|
symbol | Path parameter. Symbol of the contract. |
level | level |
maxRiskLimit | Upper limit (includes) |
minRiskLimit | Lower limit |
maxLeverage | Max leverage |
initialMargin | Initial margin rate |
maintainMargin | Maintenance margin rate |