Leader List
The /user/leader/list endpoint returns a list of leaders created by the user, along with performance metrics and status.
We return all leaders, do any pagination on front-end if required.
Method
GET /user/leader/list
Query Parameters
| Name | Type | Description |
|---|---|---|
status | int | Filter bots by status: 1 for running, 2 for stopped. Defaults to 1 (running) |
Response
{
"status": 200,
"data": {
"total_profit_earned": "325.75",
"total_aum": "1245.90",
"leaders": [
{
"id": "76200931850454329",
"avatar": "https://cdn.midjourney.com/93cef659-1331-4ab6-968f-303324f686c0/0_0.png",
"name": "Baraka",
"copiers": 0,
"max_copiers": 50,
"profit_earned": "0",
"created_at": "2025-06-12T08:32:52.879579Z",
"aum": "0",
"bitmex_id": 123132
}
]
}
}
Fields Explained
Leaders Entry (leaders)
- id: Unique identifier of the copier bot.
- name: Display name of the leader.
- avatar: URL to the leader's avatar image.
- copiers: Number of copiers currently running.
- max_copiers: Maximum number of copiers allowed.
- profit_earned: Total profit earned from all copier payments (USD).
- created_at: Timestamp when the leader was created (milliseconds since epoch).
- aum: Current leader balance (USD).
- bitmex_id: ID Used by Bitmex, use this to call open subaccount
Summary Fields
- total_profit_earned: Combined profit earned from all copier payments (USD).
- total_aum: Combined current balance across bots + leader's balance (USD).