Follower List
Follower List
Get follower list
Request frequency limit: 1/1s
Request URL
GET /deepcoin/copytrading/follower-rank
Request Parameters
Field Name | Required | Type | Description |
---|---|---|---|
status | false | int | Copy trading status Default: 1 1 : Current2 : History |
Response Parameters
Field Name | Type | Description |
---|---|---|
followerNum | int | Number of followers |
maxFollowerNum | int | Maximum follower number |
list | array | |
>userId | string | Follower ID |
>nickName | string | Follower nickname |
>totalProfit | string | Accumulated profit |
Response Example
No follower list:
{
"code": "0",
"msg": "",
"data": null
}
With follower list:
{
"code": "0",
"msg": "",
"data": {
"followerNum": 1,
"maxFollowerNum": 500,
"list": [
{
"userId": "1234567890",
"nickName": "nickname",
"totalProfit": "100.00"
}
]
}
}