查询还款订单信息
限速规则: 5次/1s (Uid)
HTTP请求
- GET /api/v2/spot/ins-loan/repaid-history
请求示例
curl "https://api.bitget.com/api/v2/spot/ins-loan/repaid-history" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
请求参数
参数名 | 参数类型 | 是否必须 | 描述 |
---|---|---|---|
startTime | String | 否 | 开始时间戳 (毫秒) |
endTime | String | 否 | 结束时间戳 (毫秒) |
limit | String | 否 | 返回数量限制。[1, 100], 默认: 100 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1711697588556,
"data": [{
"repayOrderId": "xxxxxxx",
"businessType": "normal",
"repayType":"all",
"repaidTime":"1713645576789",
"coin":"USDT",
"repaidAmount":"1",
"repaidInterest":"1.1"
}]
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
repayOrderId | String | 还款订单号 |
repaidTime | Array | 还款时间(毫秒) |
coin | String | 还款币种 |
repayAmount | String | 还款本金 |
repayInterest | String | 还款利息 |
repayType | String | 还款类型all : 全部还款part : 部分还款 |
businessType | String | 还款方式normal : 正常还款liquidation : 系统强平还款 |