Leader Profit
Leader Profit
Get leader's estimated profit
Request frequency limit: 1/1s
Request URL
GET /deepcoin/copytrading/estimate-profit
Request Parameters
None
Response Parameters
Field Name | Type | Description |
---|---|---|
list | array | |
>userID | string | Follower ID |
>nickName | string | Follower nickname |
>estimateProfit | string | Estimated profit from follower |
Response Example
No profit data:
{
"code": "0",
"msg": "",
"data": null
}
With profit data:
{
"code": "0",
"msg": "",
"data": {
"list": [
{
"userID": "36003324",
"nickName": "nickname",
"estimateProfit": "100.00"
}
]
}
}