Get trader performance
curl --request GET \
--url https://carboncopy.inc/api/v1/traders/{wallet}/performance \
--header 'Authorization: Bearer <token>'import requests
url = "https://carboncopy.inc/api/v1/traders/{wallet}/performance"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://carboncopy.inc/api/v1/traders/{wallet}/performance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://carboncopy.inc/api/v1/traders/{wallet}/performance",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://carboncopy.inc/api/v1/traders/{wallet}/performance"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://carboncopy.inc/api/v1/traders/{wallet}/performance")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://carboncopy.inc/api/v1/traders/{wallet}/performance")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"walletAddress": "0xAbCd1234...",
"username": "sharptrader",
"totalProfit": 4200,
"totalVolume": 32000,
"roi": 0.131,
"maxDrawdown": 0.08,
"sharpe": 1.42,
"pnlHistory": [
{
"date": "2025-01-01",
"pnl": 120
}
]
}{
"error": {
"code": "bad_request",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "Invalid or missing API key."
}
}{
"error": {
"code": "forbidden",
"message": "This key does not have the required scope."
}
}{
"error": {
"code": "not_found",
"message": "Resource not found."
}
}{
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded. Retry after 30 seconds."
}
}Trader Discovery
Get trader performance
Returns detailed performance analytics for any trader on the platform, including P&L history, drawdown, and Sharpe ratio.
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>'import requests
url = "https://carboncopy.inc/api/v1/traders/{wallet}/performance"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://carboncopy.inc/api/v1/traders/{wallet}/performance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://carboncopy.inc/api/v1/traders/{wallet}/performance",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://carboncopy.inc/api/v1/traders/{wallet}/performance"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://carboncopy.inc/api/v1/traders/{wallet}/performance")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://carboncopy.inc/api/v1/traders/{wallet}/performance")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"walletAddress": "0xAbCd1234...",
"username": "sharptrader",
"totalProfit": 4200,
"totalVolume": 32000,
"roi": 0.131,
"maxDrawdown": 0.08,
"sharpe": 1.42,
"pnlHistory": [
{
"date": "2025-01-01",
"pnl": 120
}
]
}{
"error": {
"code": "bad_request",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "Invalid or missing API key."
}
}{
"error": {
"code": "forbidden",
"message": "This key does not have the required scope."
}
}{
"error": {
"code": "not_found",
"message": "Resource not found."
}
}{
"error": {
"code": "rate_limited",
"message": "Rate limit exceeded. Retry after 30 seconds."
}
}Authorizations
API key in the format cc_<64 hex characters>. Obtain from the Dashboard under Settings → API Keys.
Path Parameters
Trader's Ethereum wallet address.
Example:
"0xAbCd1234..."
Response
Trader performance analytics.
Example:
"0xAbCd1234..."
Example:
"sharptrader"
Example:
4200
Example:
32000
Example:
0.131
Maximum peak-to-trough drawdown (decimal).
Example:
0.08
Sharpe ratio based on P&L history.
Example:
1.42
Normalized daily P&L time series.
Show child attributes
Show child attributes
Was this page helpful?
⌘I

