Skip to main content
PATCH
/
api
/
v1
/
portfolio
/
traders
/
batch
Batch update followed traders
curl --request PATCH \
  --url https://carboncopy.inc/api/v1/portfolio/traders/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "updates": [
    {
      "walletAddress": "0xAbCd1234...",
      "copyPercentage": 50,
      "maxCopyAmount": 123,
      "notificationsEnabled": true,
      "copyTradingEnabled": true
    }
  ]
}
'
{
  "results": [
    {
      "walletAddress": "<string>",
      "success": true,
      "error": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
updates
object[]
required
Required array length: 1 - 100 elements

Response

Results for each update in the batch.

results
object[]