Skip to main content

Get Master Acct Deposit Address Info

Query Master Acct Deposit Address Information

HTTP Request

GET /asset/v3/private/deposit/address/query

Request Parameters

ParameterRequiredTypeComments
cointruestringcoin name
chainTypefalsestringChain name. Return all if not passed.
  • pass chain name, e.g. ETH instead of ERC20

Response Parameters

ParameterTypeComments
coinstringCoin name
chainsarrayObject
> chainTypestringchain type
> addressDepositstringdeposit address
> tagDepositstringdeposit tag
> chainstringchain name
> batchReleaseLimitstringThe 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
}