Leader Info
The /leader/info/:leaderID endpoint returns the public profile of a specific leader along with their performance ranks across different periods. This is typically used to display a detailed view of a leader’s trading profile.
Method
GET /leader/info/:leaderID
:leaderID— the unique identifier of the leader to fetch info for.
Response
{
"status": 200,
"data": {
"leader": {
"id": "15313220168320001",
"status": 1,
"name": "baraka",
"avatar": "avatar",
"copiers": 0,
"max_copiers": 100,
"min_copier_value": "200",
"is_bookmark": false,
"aum": "0",
"about": "Crypto trader sharing real-time copy trades. Follow to mirror my moves and stay ahead of the market. No hype—just signals.",
"socials": [
{
"platform": "x",
"link": "https://x.com/barakacrypto"
},
{
"platform": "telegram",
"link": "https://t.me/dreson4"
},
{
"platform": "discord",
"link": "https://discord.gg/dreson4"
}
],
"bookmarks": 4,
"created_at": "1742458792095",
"updated_at": "1747280000102",
"badges": [
"110001",
"120001"
]
},
"trade_count": 94,
"trading_volume": "101519.753393",
"is_private":bool,
"show_main_data": bool,
"ranks": [
{
"leader_id": "15313220168320001",
"rank_period": 7,
"initial_balance": "47.73",
"final_balance": "46.72",
"mdd": "2.64",
"roi": "-2.11",
"pnl": "-1.01",
"aum": "0",
"sharpe": "-0.894",
"incoming": "0",
"outgoing": "0",
"win_positions": 0,
"total_positions": 0,
"copier": 0,
"risk": 3,
"hold_avg": 0,
"trade_freq": "0",
"copier_pnl": "0",
"updated_at": "2025-04-01T04:08:16.108766Z"
}
]
}
}
Fields Explained
leader
- id: Unique identifier for the leader.
- status: Leader status (e.g. 1 = active).
- name: Display name of the leader.
- avatar: Public URL of the leader's avatar image.
- copiers: Current number of active copiers.
- max_copiers: Maximum allowed copiers.
- min_copier_value: Minimum required copier balance to follow this leader (in USD).
- is_bookmark: Whether the leader is bookmarked.
- aum: Assets under management (in USD).
- about: Bio or description provided by the leader.
- socials: Array of social links. Each item has:
- platform: e.g.
x,telegram,discord - link: URL to the platform
- platform: e.g.
- bookmarks: Number of users who bookmarked this leader.
- created_at: Creation timestamp in milliseconds.
- updated_at: Last profile update timestamp in milliseconds.
- is_private: Whether the leader's profile is private.
- show_main_data: Whether to show main account historical data on the profile.
- badges: Array of badge IDs assigned to the leader.
ranks (array)
Each object in the ranks array represents performance data for a given evaluation period (7, 30, 90, 180 days):
-
rank_period: Evaluation period in days.
-
initial_balance: Leader's account balance at the start of the period (USD).
-
final_balance: Account balance at the end of the period (USD).
-
roi: Return on investment over the period (%).
-
pnl: Profit or loss over the period (USD).
-
mdd: Maximum drawdown during the period (%).
-
sharpe: Sharpe ratio (risk-adjusted return).
-
aum: Assets under management during the period (USD).
-
incoming: Total funds transferred into the leader account during the period (USD).
-
outgoing: Total funds withdrawn from the leader account during the period (USD).
-
copier: Number of copiers during the period.
-
copier_pnl: Total profit/loss across all copiers (USD).
-
win_positions: Number of profitable trades.
-
total_positions: Total number of trades.
-
risk: Risk level of the leader 1 - low, 2 - medium, 3 - high.
-
hold_avg: Average time the leader holds a position given in seconds.
-
trade_freq: Average number of trades per day.
-
updated_at: Timestamp of the last update for this rank entry.
-
trade_count: Total number of trades made by the leader.
-
trading_volume: Total trading volume in USD.