Risk Limit List
Get risk limit tiers for all trading pairs, with filtering by trading pair and cursor pagination.
API Information
- Method:
GET - Path:
/fapi/v1/riskLimits
Request Parameters
| Parameter | Location | Type | Required | Description |
|---|---|---|---|---|
| symbol | query | string | No | Trading pair filter, e.g. BTC_USDT |
| cursor | query | string | No | Pagination cursor |
| limit | query | integer | No | Page size, default 20, max 100 |
Request Example
GET /fapi/v1/riskLimits?symbol=BTC_USDT&limit=50
Response Fields
| Field | Type | Description |
|---|---|---|
| code | integer | Status code |
| message | string | Response message |
| data.has_more | boolean | Whether more records exist |
| data.next_cursor | string | Next page cursor |
| data.items | array | Tier list (see "Risk Limits for a Trading Pair" for fields) |
Response Example
{
"code": 0,
"message": "success",
"data": {
"has_more": false,
"next_cursor": "",
"items": [
{
"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
}
]
}
}