Skip to main content
POST
/
crypto
/
wallets
Add wallet to address book
curl --request POST \
  --url http://api.contabull.com/crypto/wallets \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "symbol": "usdt",
  "network": "ethereum",
  "address": "<string>"
}'
{
  "id": "<string>",
  "name": "<string>",
  "symbol": "usdt",
  "network": "ethereum",
  "address": "<string>"
}

Body

application/json
name
string
required

Friendly name for the wallet (e.g., "My USDT Wallet")

symbol
enum<string>
required

Cryptocurrency symbol this wallet will receive

Available options:
usdt,
usdc,
trx,
eth
network
enum<string>
required

Blockchain network for this wallet address

Available options:
ethereum,
tron,
polygon,
binance,
solana
address
string
required

Valid wallet address on the specified network

Response

default - application/json
id
string
required

Unique identifier for the created wallet

name
string
required

Friendly name of the wallet

symbol
enum<string>
required

Cryptocurrency symbol for this wallet

Available options:
usdt,
usdc,
trx,
eth
network
enum<string>
required

Blockchain network for this wallet

Available options:
ethereum,
tron,
polygon,
binance,
solana
address
string
required

Wallet address on the blockchain