Get Master Acct Deposit Address Info
Query Master Acct Deposit Address Information
HTTP Request
GET /asset/v3/private/deposit/address/query
Request Parameters
| Parameter | Required | Type | Comments |
|---|---|---|---|
| coin | true | string | coin name |
| chainType | false | string | Chain name. Return all if not passed.
|
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| coin | string | Coin name |
| chains | array | Object |
| > chainType | string | chain type |
| > addressDeposit | string | deposit address |
| > tagDeposit | string | deposit tag |
| > chain | string | chain name |
| > batchReleaseLimit | string | The deposit limit for this coin in this chain. "-1" means no limit |
Request Example
GET /asset/v3/private/deposit/address/query?coin=USDT&chainType=ETH HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: xxxxxxxxxxx
X-BAPI-API-KEY: xxxxxxxxxxx
X-BAPI-TIMESTAMP: 1671174181320
X-BAPI-RECV-WINDOW: 50000
Content-Type: application/x-www-form-urlencoded
Response Example
{
"retCode": 0,
"retMsg": "success",
"result": {
"coin": "USDT",
"chains": [
{
"chainType": "ERC20",
"addressDeposit": "xxxxxxxxxxx",
"tagDeposit": "",
"chain": "ETH",
"batchReleaseLimit": "-1"
}
]
},
"retExtInfo": {},
"time": 1671174181514
}