Get My Traders
Get information about the trader(s) being followed by the current user.
HTTP Request
GET /api/v1/copy/mix-follower/query-my-traders
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| productType | string | Yes | Product type. Only FUSD is supported |
Request Example
curl -X GET "https://open-api.bydoxe.com/api/v1/copy/mix-follower/query-my-traders?productType=FUSD" \
-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 (null if not following) |
| > traderUid | string | Trader's user ID |
| > traderName | string | Trader's nickname |
| > maxFollowLimit | string | Maximum follow limit |
| > followCount | string | Current follow count |
| > pnlAll | string | Total profit/loss from following |
| > winRateAll | string | Overall win rate |
| > roeAll | string | Overall ROE |
| > currentTradingPairs | array | List of current trading pairs |
| > followerTime | string | Follow start time in milliseconds |
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1763459280000,
"data": {
"traderUid": "100001",
"traderName": "TopTrader",
"maxFollowLimit": "10",
"followCount": "1",
"pnlAll": "5000.12345678",
"winRateAll": "0.6667",
"roeAll": "0.1550",
"currentTradingPairs": ["BTCUSDT", "ETHUSDT"],
"followerTime": "1763372880000"
}
}
Error Codes
| Code | Message |
|---|---|
| 45001 | Parameter productType cannot be empty |
| 45001 | Invalid productType |
| 45002 | User not found |
| 50000 | System error |