获取准入用户币种折扣率
获取准入用户币种折扣率
描述
获取准入用户的币种折扣率梯度。
HTTP请求
- GET /api/v3/account/eligible-discount-rate
- 限频规则: 20次/秒/UID
- 需要统一账户管理只读权限
请求示例
curl "https://api.bitget.com/api/v3/account/eligible-discount-rate" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:zh-CN" \
-H "Content-Type: application/json"
请求参数
| 参数名 | 参数类型 | 是否必须 | 描述 |
|---|---|---|---|
| coin | String | 否 | 币种名称 例如: BTC |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1784618341109,
"data": [
{
"coin": "BTC",
"list": [
{
"tierStartValue": "0",
"discountRate": "0.99"
},
{
"tierStartValue": "500",
"discountRate": "0.98"
}
]
}
]
}
返回参数
| 返回字段 | 参数类型 | 字段说明 |
|---|---|---|
| coin | String | 币种名称 例如: BTC |
| list | Array | 档位列表 |
| >tierStartValue | String | 档位起始价值 例如:[0,10000 U): tierStartValue=0[10000 U,20000 U): tierStartValue=10000[20000 U,∞): tierStartValue=20000 |
| >discountRate | String | 折扣率 |