Skip to main content

Get My Copy Traders (USER_DATA)

  • GET /capi/v3/copy/follower/myTraders

Weight(IP): 10

Request Parameters

ParameterTypeRequiredDescription
pageNoIntegerNoPage number, starts from 1. Default: 1.
pageSizeIntegerNoPage size, 1-100. Default: 100.

Request Example

curl "https://api-contract.weex.com/capi/v3/copy/follower/myTraders?pageNo=1&pageSize=20" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000"

Response Parameters

ParameterTypeDescription
listArrayTrader list.
list[].traderIdLongCopy trader UID.
list[].traderNameStringCopy trader name.
list[].copyTradingBalanceStringCopy trading balance.
list[].traceTotalProfitStringCopy trading net profit.
list[].totalInvestmentStringTotal investment.
list[].availableBalanceStringAvailable copy trading balance.
list[].transferableBalanceStringTransferable copy trading balance.
nextFlagBooleanWhether there is a next page.
totalIntegerTotal count.

Response Example

{
"list": [
{
"traderId": 123456,
"traderName": "Lead Trader",
"copyTradingBalance": "1000",
"traceTotalProfit": "125.5",
"totalInvestment": "500",
"availableBalance": "800",
"transferableBalance": "300"
}
],
"nextFlag": false,
"total": 1
}