交易员历史分润明细
限频规则:5次/秒/UID
HTTP请求
- GET /api/v2/copy/mix-trader/profit-history-details
请求示例
curl "https://api.bitget.com/api/v2/copy/mix-trader/profit-history-details?coin=USDT&limit=20&startTime=1693205171000&endTime=1694155571000" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
请求参数
参数名 | 参数类型 | 是否必须 | 描述 |
---|---|---|---|
coin | String | 否 | 分润结算币种。 |
limit | String | 否 | 查询条数 默认100,最大100 |
idLessThan | String | 否 | 请求此ID之前(更旧的数据)的分页内容,传的值为对应接口的 endId。 |
idGreaterThan | String | 否 | 请求此ID之后(更新的数据)的分页内容,传的值为对应接口的 endId |
startTime | String | 否 | 开始时间戳 Unix时间戳的毫秒数格式,如 1597026383085 (时间跨度最大支持三个月,若不传结束时间,则默认结束时间为三个月。) |
endTime | String | 否 | 结束时间戳 Unix时间戳的毫秒数格式,如 1597026383085 (时间跨度最大支持三个月,若不传开始时间,则默认开始时间为三个月。) |
返回示例
{
"code": "00000",
"data": {
"profitList": [
{
"profitId": "1",
"coin": "usdt",
"profit": "1",
"nickName": "nickname",
"profitTime": "1691446639000"
}
],
"endId": "3"
},
"msg": "success",
"requestTime": 1627354109502
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
profitList | List | 分润集合 |
>profitId | String | 分润id |
>coin | String | 结算币种 |
>profit | String | 已分润 |
>nickName | String | 昵称 |
>profitTime | String | 分润时间 |
endId | String | 最后的跟分润id。 指定idLessThan/idGreaterThan作为范围查询时以此为准。 |