Skip to main content
Update Copytrade
curl --request PUT \
  --url https://synthesis.trade/api/v1/wallet/pol/{wallet_id}/copytrade/{copytrade_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "target": "<string>",
  "mode": "<string>",
  "settings": {}
}
'
{
  "success": true,
  "response": {
    "copytrade_id": "01234567-89ab-cdef-0123-456789abcdef",
    "target": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
    "mode": "COPY",
    "status": "ACTIVE"
  }
}

Authorizations

X-API-KEY
string
header
required

Account secret API key.

Path Parameters

wallet_id
string
required
copytrade_id
string
required

Body

application/json
target
string
required

Target EVM address to track. Must be a valid address and cannot equal the wallet address.

mode
string
required

COPY or COUNTER.

settings
object
required

Updated copytrade settings payload. Same structure as create copytrade.

Response

200 - application/json

Polygon copytrade updated