Skip to main content

Get Deposit Address

Get your deposit address for a specific coin and network.

HTTP Request

GET /api/v1/spot/account/deposit-address

Request Parameters

ParameterTypeRequiredDescription
coinstringYesCoin symbol (e.g., USDT)
chainstringNoNetwork/chain (e.g., ETH, TRC20)

Request Example

curl -X GET "https://open-api.bydoxe.com/api/v1/spot/account/deposit-address?coin=USDT&chain=ETH" \
-H "ACCESS-KEY: your-api-key" \
-H "ACCESS-SIGN: your-signature" \
-H "ACCESS-PASSPHRASE: your-passphrase" \
-H "ACCESS-TIMESTAMP: 1659076670000"

Response Parameters

ParameterTypeDescription
codestringResponse code
msgstringResponse message
requestTimenumberRequest timestamp in milliseconds
dataarrayArray of deposit addresses
> addressstringDeposit address
> chainstringBlockchain network
> coinstringCoin symbol
> tagstringDestination tag/memo (if needed)
> urlstringBlock explorer URL

Response Example

Success Response

{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": [
{
"address": "0x1234...",
"chain": "ETH",
"coin": "USDT",
"tag": "",
"url": "https://etherscan.io/address/0x1234..."
}
]
}

Error Codes

CodeMessage
40002Unauthorized
43003Coin not found
43010Invalid network ID: id
43012Deposit not available for this coin
43013Deposit address not found
50000System error