Skip to main content
Update Wallet
curl --request PUT \
  --url https://synthesis.trade/api/v1/wallet/{wallet_id} \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "name": "Primary",
  "autoredeem": true
}
'
{
  "success": true,
  "response": {
    "wallet_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "Primary",
    "chains": {
      "POL": {
        "address": "0x1234567890abcdef1234567890abcdef12345678"
      },
      "SOL": {
        "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU"
      }
    },
    "position": 0,
    "autoredeem": true,
    "created_at": "2026-01-01T00:00:00"
  }
}

Authorizations

X-API-KEY
string
header
required

Account secret API key.

Path Parameters

wallet_id
string
required

Body

application/json
name
string

Wallet display name. Must be 1-64 characters and unique within the account.

Example:

"Primary"

autoredeem
boolean

Enable or disable autoredeem.

Example:

true

Response

200 - application/json

Wallet updated