Get Copy Trade Settings
Get the current copy trading settings for traders being followed.
HTTP Request
GET /api/v1/copy/mix-follower/query-copy-trade-settings
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| productType | string | Yes | Product type. Only FUSD is supported |
| traderUid | string | No | Filter by specific trader user ID |
Request Example
curl -X GET "https://open-api.bydoxe.com/api/v1/copy/mix-follower/query-copy-trade-settings?productType=FUSD&traderUid=100001" \
-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 |
| > settingList | array | List of copy trade settings |
| >> traderUid | string | Trader's user ID |
| >> traderName | string | Trader's nickname |
| >> productType | string | Product type |
| >> marginMode | string | Margin mode |
| >> fixedAmount | string | Fixed amount for copy trading |
| >> ratio | string | Copy ratio |
| >> dailyMarginLimit | string | Current daily margin limit |
| >> dailyMarginLimitMax | string | Maximum daily margin limit |
| >> orderType | string | Order type (FIXED_AMOUNT/POSITION_RATE) |
| >> status | string | Follow status |
| >> createdTime | string | Created time in milliseconds |
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1763459280000,
"data": {
"settingList": [
{
"traderUid": "100001",
"traderName": "TopTrader",
"productType": "FUSD",
"marginMode": "FOLLOW_TRADER_SETTING",
"fixedAmount": "100.00",
"ratio": "0",
"dailyMarginLimit": "50000",
"dailyMarginLimitMax": "50000",
"orderType": "FIXED_AMOUNT",
"status": "FOLLOW",
"createdTime": "1763372880000"
}
]
}
}
Error Codes
| Code | Message |
|---|---|
| 45001 | Parameter productType cannot be empty |
| 45001 | Invalid productType |
| 45002 | User not found |
| 50000 | System error |