Get Copy Follower Settings (USER_DATA)
- GET
/capi/v3/copy/follower/settings
Weight(IP): 10
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| traderId | Long | Yes | Copy trader UID. |
Request Example
curl "https://api-contract.weex.com/capi/v3/copy/follower/settings?traderId=123456" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000"
Response Parameters
Returns an array. Unified settings return one item; separated settings return one item per symbol.
| Parameter | Type | Description |
|---|---|---|
| copyEnable | Boolean | Whether the user is currently copying this trader. |
| symbol | String | Symbol. Unified settings return null. |
| symbols | Array | Symbol list. Used for unified settings. |
| productType | String | Product type, currently USDT-FUTURES. |
| settingMode | String | Setting mode: unified or per_symbol. |
| traceType | String | Copy type: percent or amount. |
| traceValue | String | Copy value. |
| maxHoldSize | String | Maximum copy holding size. |
| marginType | String | Margin type: cross, isolated, or trader. |
| marginCoin | String | Margin coin, currently USDT. |
| leverageType | String | Leverage type: fixed, trader, or specify. |
| longLeverage | Integer | Long leverage. |
| shortLeverage | Integer | Short leverage. |
| customLeverages | Array | Custom leverage list. |
| customLeverages[].symbol | String | Symbol. |
| customLeverages[].longLeverage | Integer | Long leverage. |
| customLeverages[].shortLeverage | Integer | Short leverage. |
| takeProfitRatio | String | Take-profit ratio. |
| stopLossRatio | String | Stop-loss ratio. |
| slippageRatio | String | Slippage ratio. |
Response Example
[
{
"copyEnable": true,
"symbol": null,
"symbols": ["BTCUSDT", "ETHUSDT"],
"productType": "USDT-FUTURES",
"settingMode": "unified",
"traceType": "amount",
"traceValue": "100",
"maxHoldSize": "1000",
"marginType": "trader",
"marginCoin": "USDT",
"leverageType": "specify",
"longLeverage": 10,
"shortLeverage": 10,
"customLeverages": [
{
"symbol": "BTCUSDT",
"longLeverage": 10,
"shortLeverage": 10
}
],
"takeProfitRatio": "0.2",
"stopLossRatio": "0.1",
"slippageRatio": "0.01"
}
]