Skip to main content

Get deposit address

  • GET /api/v3/wallet/deposit/address

Weight(IP): 1

Gets the deposit address for the specified asset and network for the authenticated user. The currency and network must be configured in GET /api/v3/coins with deposits enabled. Requires ACCOUNT_DETAILS permission.

Request parameters

ParameterTypeRequired?Description
coinStringYesAsset code, such as BTC.
networkStringYesNetwork name. Must be supported for the specified asset and have deposits enabled.

Request example

curl "https://api-spot.weex.com/api/v3/wallet/deposit/address?coin=USDT&network=BSC" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1735632000000"

Response parameters

Field nameTypeDescription
coinStringAsset code.
networkStringNetwork name.
addressStringDeposit address.
addressTagStringMemo/Tag. Empty if not applicable.
contractAddressStringContract address. Empty for non-token networks.

Response example

{
"coin": "USDT",
"network": "BSC",
"address": "0xc45bf968483c0d5efac77999e616528b5db8b8Af",
"addressTag": "",
"contractAddress": "0x55d398326f99059fF775485246999027B3197955"
}