Skip to main content

Get Futures Risk Limit

Description

Retrieve information from the Futures Risk Limit Table.

HTTP Request

GET /v3/market/riskLimit

Request Parameters

ParameterRequiredTypeDescription
symbolNoStringA trading pair, consisting of two currencies: base currency and quote currency

Response Parameters

ParameterTypeDescription
symbolStringA trading pair, consisting of two currencies: base currency and quote currency
notionalCapStringThe 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"
}