Skip to main content

Historical Profit

Historical Profit

Get leader's historical profit list

Request frequency limit: 1/1s

Request URL

GET /deepcoin/copytrading/history-profit

Request Parameters

None

Response Parameters

Field NameTypeDescription
listarray
>settlementTimeint64Date
>profitstringProfit amount

Response Example

No historical profit data:

{
"code": "0",
"msg": "",
"data": null
}

With historical profit data:

{
"code": "0",
"msg": "",
"data": {
"list": [
{
"settlementTime": 1695355200,
"profit": "0.25"
}
]
}
}