Skip to main content

Get Sub Acct Deposit Address Info

Query Sub Acct Deposit Address Information

info

Get the deposit address information of sub account. Use master user's api key only.

HTTP Request

GET /asset/v3/private/deposit/sub-member-address/query

Request Parameters

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

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/sub-member-address/query?coin=USDT&chainType=ETH&subMemberId=407767 HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-API-KEY: xxxxxxxxxxx
X-BAPI-SIGN: xxxxxxxxxxx
X-BAPI-TIMESTAMP: 1671174486288
X-BAPI-RECV-WINDOW: 50000

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"coin": "USDT",
"chains": {
"chainType": "ERC20",
"addressDeposit": "xxxxxxxxxxx",
"tagDeposit": "",
"chain": "ETH",
"batchReleaseLimit": "-1"
}
},
"retExtInfo": {},
"time": 1671174486505
}