Skip to main content
POST
/
payments
/
wallet-addresses
Add withdrawal address
curl --request POST \
  --url https://api.breet.io/v1/payments/wallet-addresses \
  --header 'Content-Type: application/json' \
  --header 'X-Breet-Env: <api-key>' \
  --header 'x-app-id: <api-key>' \
  --header 'x-app-secret: <api-key>' \
  --data '
{
  "address": "14grJpemFaf88c8tiVb77W7TYg2W3ir6pfkKz3YjhhZ5",
  "network": "SOL",
  "token": "USDT",
  "label": "Main payout wallet"
}
'
{
  "message": "wallet address added successfully",
  "success": true,
  "data": {
    "_id": "6932dc98c2ceccdea367388a",
    "user": "68ca0d24604d65932aac2fc8",
    "address": "14grJpemFaf88c8tiVb77W7TYg2W3ir6pfkKz3YjhhZ5",
    "network": "SOL",
    "token": "USDT",
    "label": "Main payout wallet",
    "avatar": "https://assets.breet.io/token-network-assets/USDT_SOL.png"
  },
  "meta": {},
  "summary": {},
  "stats": {}
}

Authorizations

x-app-id
string
header
required

Your application ID from the Breet dashboard

x-app-secret
string
header
required

Your application secret from the Breet dashboard

X-Breet-Env
string
header
required

Environment selector: development or production

Body

application/json
address
string
required

The wallet address (valid for the given network).

Example:

"14grJpemFaf88c8tiVb77W7TYg2W3ir6pfkKz3YjhhZ5"

network
enum<string>
required

Blockchain network. Supported: ERC20, TRC20, BSC, SOL, TON.

Available options:
ERC20,
TRC20,
BSC,
SOL,
TON
token
enum<string>
required

Token symbol.

Available options:
USDT,
USDC
label
string
required

A label for this address (e.g. for display or reference).

Response

Address added or updated successfully