Skip to main content

Copier Detail

The /user/copier/detail/:id endpoint returns detailed information about a specific copier, including metadata, linked leader information, and performance summary across different periods.

Method

GET /user/copier/detail/:id

  • :id — the unique identifier of the copier bot whose detail is to be fetched.

Response

{
"status": 200,
"data": {
"id": "78276517955634603",
"leader_id": "76924913625073137",
"status": 1,
"start_at": "1749964602001",
"meta": {
"stop_loss": "15",
"take_profit": "20",
"commission": "15",
"stop_reason:": "stop_loss",
"is_inverse": false,
"is_mirror": false
},
"created_at": "1749964602001",
"updated_at": "1749964602001",
"trade_count": 94,
"trading_volume": "101519.753393",
"leader": {
"id": "76924913625073137",
"status": 1,
"name": "LeaderLead",
"avatar": "https://cdn.midjourney.com/93cef659-1331-4ab6-968f-303324f686c0/0_0.png",
"copiers": 1,
"max_copiers": 50,
"min_copier_value": "1000",
"aum": "0",
"about": "Full-time trader. Zero hype, just results. Copy my trades and follow real strategy, not guesswork. Consistent. Transparent. Profitable.",
"socials": null,
"commission": "15",
"bookmarks": 0,
"created_at": "1749803478150",
"updated_at": "1749803478150"
},
"summary": {
"1": {
"rank_period": 1,
"initial_balance": "36.07",
"final_balance": "40.95",
"roi": "13.52",
"pnl": "4.87",
"incoming": "0",
"outgoing": "0",
"updated_at": "2025-06-16T03:28:13.159769Z"
},
"1000": {
"rank_period": 1000,
"initial_balance": "36.07",
"final_balance": "40.95",
"roi": "13.52",
"pnl": "4.87",
"incoming": "0",
"outgoing": "0",
"updated_at": "2025-06-16T03:38:02.412759Z"
},
"180": {
"rank_period": 180,
"initial_balance": "36.07",
"final_balance": "40.95",
"roi": "13.52",
"pnl": "4.87",
"incoming": "0",
"outgoing": "0",
"updated_at": "2025-06-16T03:28:13.258908Z"
},
"30": {
"rank_period": 30,
"initial_balance": "36.07",
"final_balance": "40.95",
"roi": "13.52",
"pnl": "4.87",
"incoming": "0",
"outgoing": "0",
"updated_at": "2025-06-16T03:28:13.195733Z"
},
"90": {
"rank_period": 90,
"initial_balance": "36.07",
"final_balance": "40.95",
"roi": "13.52",
"pnl": "4.87",
"incoming": "0",
"outgoing": "0",
"updated_at": "2025-06-16T03:28:13.227203Z"
}
}
}
}

Fields Explained

id

Unique identifier of the copier bot.

leader_id

ID of the leader the copier is following.

status

Integer status code representing the current state of the copier.

start_at, created_at, updated_at

Timestamps in milliseconds since epoch.

  • trade_count: Total number of trades made by the leader.
  • trading_volume: Total trading volume in USD.

meta

Object containing copier settings:

  • stop_loss: Percent loss threshold.
  • take_profit: Percent gain threshold.
  • commission: Commission rate in percent.
  • stop_reason: Reason for stopping the copier.
  • is_inverse : True is reverse copy trading, false otherwise.
  • is_mirror : True is mirror copy trading, false otherwise.

leader

Details of the leader being copied, including ID, name, avatar URL, copier stats, and bio.

summary

A map of performance summaries keyed by rank period (1, 30, 90, 180, 1000). Each entry includes:

  • rank_period: Time window in days.
  • initial_balance and final_balance: Portfolio values.
  • roi: Return on investment as a percentage.
  • pnl: Profit and loss.
  • incoming, outgoing: Funds transferred in/out.
  • updated_at: Last updated timestamp (ISO 8601).