Skip to main content
GET
/
api
/
v1
/
traders
/
{wallet}
/
performance
Get trader performance
curl --request GET \
  --url https://carboncopy.inc/api/v1/traders/{wallet}/performance \
  --header 'Authorization: Bearer <token>'
{
  "walletAddress": "0xAbCd1234...",
  "username": "sharptrader",
  "totalProfit": 4200,
  "totalVolume": 32000,
  "roi": 0.131,
  "maxDrawdown": 0.08,
  "sharpe": 1.42,
  "pnlHistory": [
    {
      "date": "2025-01-01",
      "pnl": 120
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in the format cc_<64 hex characters>. Obtain from the Dashboard under Settings → API Keys.

Path Parameters

wallet
string
required

Trader's Ethereum wallet address.

Example:

"0xAbCd1234..."

Response

Trader performance analytics.

walletAddress
string
Example:

"0xAbCd1234..."

username
string | null
Example:

"sharptrader"

totalProfit
number
Example:

4200

totalVolume
number
Example:

32000

roi
number
Example:

0.131

maxDrawdown
number

Maximum peak-to-trough drawdown (decimal).

Example:

0.08

sharpe
number

Sharpe ratio based on P&L history.

Example:

1.42

pnlHistory
object[]

Normalized daily P&L time series.