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
| Parameter | Type | Required? | Description |
|---|---|---|---|
| coin | String | Yes | Asset code, such as BTC. |
| network | String | Yes | Network 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 name | Type | Description |
|---|---|---|
| coin | String | Asset code. |
| network | String | Network name. |
| address | String | Deposit address. |
| addressTag | String | Memo/Tag. Empty if not applicable. |
| contractAddress | String | Contract address. Empty for non-token networks. |
Response example
{
"coin": "USDT",
"network": "BSC",
"address": "0xc45bf968483c0d5efac77999e616528b5db8b8Af",
"addressTag": "",
"contractAddress": "0x55d398326f99059fF775485246999027B3197955"
}