Skip to main content
Create Withdrawal
curl --request POST \
  --url https://synthesis.trade/api/v1/wallet/sol/{wallet_id}/withdraw \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "token": "USDC",
  "amount": "25.00",
  "address": "7xKXtg2CWz9P8VxP1Wm2G7x5Q8Y9LwYH6a7b8c9d1e2F",
  "chain": "SOLANA"
}
'
{
  "success": true,
  "response": {
    "tx_hash": "5QqJcC8Rj9o3v7x2Yp4mN6bT1rE8uKzA2sD4fG7hJ9kL"
  }
}

Authorizations

X-API-KEY
string
header
required

Account secret API key.

Path Parameters

wallet_id
string
required

Body

application/json
token
string
required

Supported values depend on chain: SOLANA supports USDC; POLYGON, ETHEREUM, BASE, BINANCE, ARBITRUM, and OPTIMISM support USDC or USDT; TRON supports USDT only.

Example:

"USDC"

amount
string
required

Positive decimal withdrawal amount.

Example:

"25.00"

address
string
required
Example:

"7xKXtg2CWz9P8VxP1Wm2G7x5Q8Y9LwYH6a7b8c9d1e2F"

chain
string
default:SOLANA

Destination chain. Supported values: SOLANA, POLYGON, ETHEREUM, BASE, BINANCE, ARBITRUM, OPTIMISM, TRON.

Example:

"SOLANA"

Response

201 - application/json

Solana withdrawal created