U本位合约利息记录
限速规则: 5次/1s (uid)
描述
获取U本位合约利息记录
HTTP请求
- GET /api/v2/mix/account/interest-history
请求示例
curl "https://api.bitget.com/api/v2/mix/account/interest-history?productType=usdt-futures&startTime=1725330167000&endTime=1725848567893" \
-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 | 否 | 币种 只能传 USDT |
productType | String | 是 | 产品类型USDT-FUTURES USDT专业合约SUSDT-FUTURES USDT专业合约模拟盘 |
idLessThan | String | 否 | 请求返回数据的endId 之前(更旧的数据)的分页内容。 |
startTime | String | 是 | 开始时间 (时间戳毫秒) |
endTime | String | 是 | 结束时间 (时间戳毫秒) |
limit | String | 否 | 查询条数 默认100,最大100 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1725875190690,
"data": {
"nextSettleTime": "1725876300000",
"borrowAmount": "0",
"borrowLimit": "600000",
"interestList": [
{
"coin": "USDT",
"liability": "100",
"interestFreeLimit": "100",
"interestLimit": "500",
"hourInterestRate": "0.12",
"interest": "0.12",
"cTime": "1725848567893"
}
],
"endId": "xxxxxxxxxxxxxxx"
}
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
nextSettleTime | String | 下一次利息结算时间 |
borrowAmount | String | U本位合约借款总额 |
borrowLimit | String | 借款限额 |
interestList | List<Object> | 利息集合 |
>coin | String | 币种 |
>liability | String | 总负债 |
>interestFreeLimit | String | 免息额度 |
>interestLimit | String | 计息额度 |
>hourInterestRate | String | 每小时借贷利率 |
>cTime | String | 利息收取时间 |
>interest | String | 利息 |
endId | String | 最后数据的id。 指定idLessThan作为范围查询时以此为准。 |