跳到主要内容

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"

请求参数

参数名参数类型是否必须描述
coinString币种 只能传 USDT
productTypeString产品类型
USDT-FUTURES USDT专业合约
SUSDT-FUTURES USDT专业合约模拟盘
idLessThanString请求返回数据的endId之前(更旧的数据)的分页内容。
startTimeString开始时间 (时间戳毫秒)
endTimeString结束时间 (时间戳毫秒)
limitString查询条数 默认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"
}
}

返回参数

返回字段参数类型字段说明
nextSettleTimeString下一次利息结算时间
borrowAmountStringU本位合约借款总额
borrowLimitString借款限额
interestListList<Object>利息集合
>coinString币种
>liabilityString总负债
>interestFreeLimitString免息额度
>interestLimitString计息额度
>hourInterestRateString每小时借贷利率
>cTimeString利息收取时间
>interestString利息
endIdString最后数据的id。
指定idLessThan作为范围查询时以此为准。