Get Order Total Detail
Get the trader's overall trading statistics and performance metrics.
HTTP Request
GET /api/v1/copy/mix-trader/order-total-detail
Request Parameters
This endpoint does not require any parameters.
Request Example
curl -X GET "https://open-api.bydoxe.com/api/v1/copy/mix-trader/order-total-detail" \
-H "ACCESS-KEY: your-api-key" \
-H "ACCESS-SIGN: your-signature" \
-H "ACCESS-PASSPHRASE: your-passphrase" \
-H "ACCESS-TIMESTAMP: 1659076670000" \
-H "Content-Type: application/json"
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | string | Response code |
| msg | string | Response message |
| requestTime | number | Request timestamp in milliseconds |
| data | object | Response data |
| > roi | string | Return on investment percentage |
| > tradingOrderNum | string | Total number of trading orders |
| > totalFollowerNum | string | Total number of followers (all time) |
| > currentFollowerNum | string | Current number of followers |
| > totalpl | string | Total profit/loss amount |
| > gainNum | string | Number of profitable trades |
| > lossNum | string | Number of losing trades |
| > winRate | string | Win rate percentage |
| > tradingPairsAvailableList | array | List of available trading pairs |
| > lastWeekRoiList | array | ROI data for last week |
| >> rate | string | ROI rate |
| >> ctime | string | Timestamp |
| > lastWeekProfitList | array | Profit data for last week |
| >> amount | string | Profit amount |
| >> ctime | string | Timestamp |
| > lastMonthRoiList | array | ROI data for last month |
| >> rate | string | ROI rate |
| >> ctime | string | Timestamp |
| > lastMonthProfitList | array | Profit data for last month |
| >> amount | string | Profit amount |
| >> ctime | string | Timestamp |
| > totalEquity | string | Total equity |
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1763459280000,
"data": {
"roi": "15.50",
"tradingOrderNum": "150",
"totalFollowerNum": "25",
"currentFollowerNum": "18",
"totalpl": "$5000.00",
"gainNum": "100",
"lossNum": "50",
"winRate": "66.667",
"tradingPairsAvailableList": ["BTCUSDT", "ETHUSDT"],
"lastWeekRoiList": [
{
"rate": "2.500000",
"ctime": "1763372880000"
}
],
"lastWeekProfitList": [
{
"amount": "100.00",
"ctime": "1763372880000"
}
],
"lastMonthRoiList": [
{
"rate": "15.500000",
"ctime": "1763372880000"
}
],
"lastMonthProfitList": [
{
"amount": "5000.00",
"ctime": "1763372880000"
}
],
"totalEquity": "10000.00"
}
}
Error Codes
| Code | Message |
|---|---|
| 45002 | User not found |
| 45003 | Not a copy trader |
| 50000 | System error |