风险限额列表
获取全部交易对的风险限额档位,支持按交易对过滤和游标分页。
接口信息
- 方法:
GET - 路径:
/fapi/v1/riskLimits
请求参数
| 参数 | 位置 | 类型 | 必填 | 说明 |
|---|---|---|---|---|
| symbol | query | string | 否 | 交易对过滤,如 BTC_USDT |
| cursor | query | string | 否 | 分页游标 |
| limit | query | integer | 否 | 每页数量,默认 20,最大 100 |
请求示例
GET /fapi/v1/riskLimits?symbol=BTC_USDT&limit=50
响应字段
| 字段 | 类型 | 说明 |
|---|---|---|
| code | integer | 状态码 |
| message | string | 返回消息 |
| data.has_more | boolean | 是否有更多 |
| data.next_cursor | string | 下一页游标 |
| data.items | array | 档位列表(字段见"指定交易对风险限额") |
响应示例
{
"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
}
]
}
}