| # | Account Type | Margin Mode | Risk Limit | Reference |
|---|---|---|---|---|
| 1 | Classic Account | Futures Isolated | User must set Risk Limit. | Get Isolated Margin Risk Limit Modify Isolated Margin Risk Limit |
| 2 | Classic Account | Futures Cross | Risk Limit is a continuous value. Query via API. | Get Cross Margin Risk Limit |
| 3 | Unified Trading Account | Futures | Risk Limit is tiered. No manual setting. System applies the minimum tier based on the current tier. Leverage determines the maximum position size that can be opened. The current position size + the total notional value of open orders determines the maintenance margin ratio. | References |
curl --location --request GET 'https://api.kucoin.com/api/ua/v1/market/position-tiers?tradeType=FUTURES¤cy=BTC,ETH&marginMode=CROSS&data=RISK_LIMIT&accountType=UNIFIED&symbol=KCSUSDTM'{
"code": "200000",
"data": [
{
"currency": "BTC",
"tier": 1,
"minSize": "0",
"maxSize": "0.09800000",
"maxLeverage": "5",
"maintainMarginRate": "0.0500"
},
{
"currency": "ETH",
"tier": 1,
"minSize": "0",
"maxSize": "2.89000000",
"maxLeverage": "5",
"maintainMarginRate": "0.0500"
}
]
}