Risk Limits for a Trading Pair
Get all risk limit tiers for a specified trading pair (tiered margin rates).
API Information
- Method:
GET - Path:
/fapi/v1/riskLimits/{symbol}
Request Parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
| symbol | path | string | Yes | Trading pair, e.g. BTC_USDT |
Request Example
GET /fapi/v1/riskLimits/BTC_USDT
Response Fields
| Field | Type | Description |
|---|---|---|
| code | integer | Status code |
| message | string | Response message |
| data | array | Tier list |
| data[].id | integer | Primary key ID |
| data[].symbol | string | Trading pair |
| data[].tier | integer | Tier 1, 2, 3, ... |
| data[].notional_cap | number | Maximum notional value (USDT) |
| data[].starting_margin_rate | number | Initial margin rate (required to open position) |
| data[].maintenance_margin_rate | number | Maintenance margin rate |
| data[].max_leverage | integer | Maximum leverage of this tier |
| data[].created_at | integer | Creation time (milliseconds) |
| data[].updated_at | integer | Update time (milliseconds) |
Response Example
{
"code": 0,
"message": "success",
"data": [
{
"id": 1,
"symbol": "BTC_USDT",
"tier": 1,
"notional_cap": 50000,
"starting_margin_rate": 0.01,
"maintenance_margin_rate": 0.005,
"max_leverage": 100,
"created_at": 1711929600000,
"updated_at": 1711929600000
},
{
"id": 2,
"symbol": "BTC_USDT",
"tier": 2,
"notional_cap": 250000,
"starting_margin_rate": 0.02,
"maintenance_margin_rate": 0.01,
"max_leverage": 50,
"created_at": 1711929600000,
"updated_at": 1711929600000
}
]
}