获取利率记录
限速规则:5次/秒/IP (IP)
描述
获取利率记录
HTTP请求
- GET /api/v2/mix/market/union-interest-rate-history
请求示例
curl "https://api.bitget.com/api/v2/mix/market/union-interest-rate-history?coin=USDT"
请求参数
参数名 | 参数类型 | 是否必须 | 描述 |
---|---|---|---|
coin | String | 是 | 币种 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1725948522731,
"data": {
"coin": "USDT",
"historyInterestRateList": [
{
"ts": "1723533015946",
"annualInterestRate": "0.02555",
"dailyInterestRate": "0.00007"
},
{
"ts": "1723446615946",
"annualInterestRate": "0.02555",
"dailyInterestRate": "0.00007"
},
{
"ts": "1723360215946",
"annualInterestRate": "0.02555",
"dailyInterestRate": "0.00007"
}
]
}
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
coin | String | 币种 |
historyInterestRateList | List | 利率记录 |
> annualInterestRate | String | 年利率 |
> dailyInterestRate | String | 日利率 |
> ts | String | 日期 |