Get Cross/Isolated Margin Risk Limit
This endpoint can query the cross/isolated margin risk limit.
HTTP REQUEST
GET /api/v1/risk/limit/strategy
Example
GET /api/v1/risk/limit/strategy?marginModel=cross
// CROSS MARGIN RESPONSES
{
"code": "200000",
"data": [
{
"currency": "BTC",
"borrowMaxAmount": "140",
"buyMaxAmount": "60",
"holdMaxAmount": "522.8",
"precision": 8
},
{
"currency": "USDT",
"borrowMaxAmount": "2000000",
"buyMaxAmount": "10000000",
"holdMaxAmount": "15000000",
"precision": 8
},
{
"currency": "ETH",
"borrowMaxAmount": "1000",
"buyMaxAmount": "600",
"holdMaxAmount": "3737.1",
"precision": 8
},
...
]
}
// ISOLATED MARGIN RESPONSES
{
"code": "200000",
"data": [
{
"symbol": "ETH-USDT",
"baseMaxBorrowAmount": "200",
"quoteMaxBorrowAmount": "3000000",
"baseMaxBuyAmount": "210",
"quoteMaxBuyAmount": "3300000",
"baseMaxHoldAmount": "3737.1",
"quoteMaxHoldAmount": "5000000",
"basePrecision": 8,
"quotePrecision": 8
},
{
"symbol": "BTC-USDT",
"baseMaxBorrowAmount": "20",
"quoteMaxBorrowAmount": "3000000",
"baseMaxBuyAmount": "25",
"quoteMaxBuyAmount": "3300000",
"baseMaxHoldAmount": "522.8",
"quoteMaxHoldAmount": "5000000",
"basePrecision": 8,
"quotePrecision": 8
},
...
]
}
API KEY PERMISSIONS
This endpoint requires the General permission.
REQUEST URL
This endpoint support Spot URL
REQUEST RATE LIMIT
Spot weight
:20
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
marginModel | String | Yes | The type of marginModel : cross (cross margin), isolated (isolated margin). Default is cross . |
CROSS MARGIN RESPONSES
Param | Description |
---|---|
currency | Currency |
borrowMaxAmount | Maximum borrow amount |
buyMaxAmount | Maximum buy amount |
holdMaxAmount | Maximum hold amount |
precision | Precision |
ISOLATED MARGIN RESPONSES
Param | Description |
---|---|
symbol | The valid trading symbol code. e.g: EOS-USDC. |
baseMaxBorrowAmount | Maximum borrowing amount of base currency |
quoteMaxBorrowAmount | Maximum borrowing amount of quote currency |
baseMaxBuyAmount | Maximum buy amount of base currency |
quoteMaxBuyAmount | Maximum buy amount of quote currency |
baseMaxHoldAmount | Maximum holding amount of base currency |
quoteMaxHoldAmount | Maximum holding amount of quote currency |
basePrecision | Base currency precision |
quotePrecision | Quote currency precision |