Get Deposit Address
Get your deposit address for a specific coin and network.
HTTP Request
GET /api/v1/spot/account/deposit-address
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| coin | string | Yes | Coin symbol (e.g., USDT) |
| chain | string | No | Network/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
| Parameter | Type | Description |
|---|---|---|
| code | string | Response code |
| msg | string | Response message |
| requestTime | number | Request timestamp in milliseconds |
| data | array | Array of deposit addresses |
| > address | string | Deposit address |
| > chain | string | Blockchain network |
| > coin | string | Coin symbol |
| > tag | string | Destination tag/memo (if needed) |
| > url | string | Block 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
| Code | Message |
|---|---|
| 40002 | Unauthorized |
| 43003 | Coin not found |
| 43010 | Invalid network ID: id |
| 43012 | Deposit not available for this coin |
| 43013 | Deposit address not found |
| 50000 | System error |