跳到主要内容

鲨鱼鳍历史记录

限速规则: 10次/1s (Uid)

HTTP请求

  • GET /api/v2/earn/sharkfin/records
请求示例
curl "https://api.bitget.com/api/v2/earn/sharkfin/records?type=subscription" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"

请求参数

参数名参数类型是否必须描述
coinString申购币种
typeString交易类型
subscription 申购
redemption 赎回
interest 利息派付
startTimeString开始时间戳
Unix时间戳的毫秒数格式,如 1597026383085
(时间跨度最大支持三个月,若不传结束时间,则默认结束时间为三个月。)
endTimeString结束时间戳
Unix时间戳的毫秒数格式,如 1597026383085
(时间跨度最大支持三个月,若不传开始时间,则默认开始时间为三个月。)
limitString查询条数 默认20,最大100
idLessThanString请求此ID之后(更新的数据)的分页内容,传的值为对应接口的 endId
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1696757048457,
"data": {
"resultList": [
{
"orderId": "1",
"product": "USDT/BTC_20231013",
"period": "7",
"amount": "100.00000000",
"ts": "1696756278760",
"type": "subscription"
}
],
"endId": "1"
}
}

返回参数

返回字段参数类型字段说明
resultListList<Object>记录列表
> orderIdString记录Id
> productString产品名称
> periodString期限时长 ∂
> amountString金额
> tsString创建时间 时间戳
> typeString交易类型
subscription 申购
redemption 赎回
interest 利息派付