Leader Profit History
The /user/leader/profit/history/:id returns a list of profit history sorted in descending order, every single copier.
Method
GET /user/leader/profit/history/:id
Query Parameters
before(optional) — ISO 8601 timestamp. Returns trades executed before the specified time. Defaults to end of day today (UTC).limit(optional) — Maximum number of trades to return. Integer between 1 and 50. Defaults to 30.
Response
{
"status": 200,
"data": [
{
"copier_id": "84174007191996225",
"username": "test_copier",
"amount": "15",
"created_at": "2025-06-24T07:23:54.110257Z"
},
{
"copier_id": "84174007191996225",
"username": "test_copier",
"amount": "10",
"created_at": "2025-06-23T07:24:58.704626Z"
},
{
"copier_id": "84174007191996225",
"username": "test_copier",
"amount": "8",
"created_at": "2025-06-22T07:25:04.92626Z"
}
]
}
Fields Explained
Each item in the response array represents an executed trade.
- copier_id: Copier ID.
- username: Username of the copier.
- amount: Amount of USDT transferred.
- created_at: ISO 8601 timestamp when the transfer was executed.