交易员历史分润汇总
限频规则:5次/秒/UID
HTTP请求
- GET /api/v2/copy/mix-trader/profit-history-summarys
请求示例
curl "https://api.bitget.com/api/v2/copy/mix-trader/profit-history-summarys" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
请求参数
N/A
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1698200382922,
"data": {
"profitSummary": {
"yesterdayProfit": "0",
"sumProfit": "26.4519",
"waitProfit": "0",
"yesterdayTime": "1698076800000"
},
"profitHistoryList": [
{
"coin": "USDT",
"profitCount": "24.28410397",
"lastProfitTime": "1698076800000"
}
]
}
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
profitSummary | Object | 交易员分润汇总信息 |
>yesterdayProfit | String | 昨日分润(交易员) |
>yesterdayTime | String | 昨日分润时间(毫秒) |
>sumProfit | String | 累计分润 |
>waitProfit | String | 待分润 |
profitHistoryList | List | 历史分润汇总集合 |
>coin | String | 结算币种 (以币种为维度) |
>profitCount | String | 收益汇总 (以币种为维度) |
>lastProfitTime | String | 最后分润时间(毫秒) (以币种为维度) |