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 | No | String | A trading pair, consisting of two currencies: base currency and quote currency |
Response Parameters
Parameter | Type | Description |
---|---|---|
symbol | String | A trading pair, consisting of two currencies: base currency and quote currency |
notionalCap | String | The upper limit of the corresponding value. |
Request Example
{
"symbol": "BTC_USDT_PERP"
}
Response Example
{
"code": 200,
"data": [
{
"notionalCap": "50000",
"symbol": "BTC_USDT_PERP"
}
],
"msg": "Success"
}