curl --request GET \
--url https://carboncopy.news/api/v1/portfolio \
--header 'Authorization: Bearer <token>'{
"totalValue": 5420.75,
"activePositions": 12,
"totalPnL": 420.5,
"totalPnLPercent": 8.41,
"winRate": 62.5,
"totalTrades": 48,
"traders": [
{
"walletAddress": "0xAbCd1234...",
"copyTradingEnabled": true,
"copyPercentage": 25,
"displayName": "alpha_trader",
"maxCopyAmount": 500,
"totalCopied": 14,
"pnl": 128.4
}
]
}Returns an aggregated summary of your copy-trading portfolio including total value, P&L, win rate, and per-trader breakdowns.
curl --request GET \
--url https://carboncopy.news/api/v1/portfolio \
--header 'Authorization: Bearer <token>'{
"totalValue": 5420.75,
"activePositions": 12,
"totalPnL": 420.5,
"totalPnLPercent": 8.41,
"winRate": 62.5,
"totalTrades": 48,
"traders": [
{
"walletAddress": "0xAbCd1234...",
"copyTradingEnabled": true,
"copyPercentage": 25,
"displayName": "alpha_trader",
"maxCopyAmount": 500,
"totalCopied": 14,
"pnl": 128.4
}
]
}API key in the format cc_<64 hex characters>. Obtain from the Dashboard under Settings → API Keys.
Portfolio summary.
Current portfolio value in USDC.
5420.75
Number of currently open copy-trade positions.
12
Lifetime profit/loss in USDC.
420.5
Lifetime P&L as a percentage of invested capital.
8.41
Percentage of resolved copy trades that were profitable.
62.5
Total number of copy trades executed.
48
Summary stats for each followed trader.
Show child attributes
Was this page helpful?