Get Sub Deposit Address
Query the deposit address information of SUB account.
info
- Use master UID's api key only
- Custodial sub account deposit address cannot be obtained
HTTP Request
GET /v5/asset/deposit/query-sub-member-address
Request Parameters
Parameter | Required | Type | Comments |
---|---|---|---|
coin | true | string | Coin, uppercase only |
chainType | true | string | Please use the value of chain from coin-info endpoint |
subMemberId | true | string | Sub user ID |
Response Parameters
Parameter | Type | Comments |
---|---|---|
coin | string | Coin |
chains | array | Object |
> chainType | string | Chain type |
> addressDeposit | string | The address for deposit |
> tagDeposit | string | Tag of deposit |
> chain | string | Chain |
> batchReleaseLimit | string | The deposit limit for this coin in this chain. "-1" means no limit |
Request Example
- HTTP
- Python
- Node.js
GET /v5/asset/deposit/query-sub-member-address?coin=USDT&chainType=TRX&subMemberId=592334 HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXX
X-BAPI-API-KEY: XXXXX
X-BAPI-TIMESTAMP: 1672194349421
X-BAPI-RECV-WINDOW: 5000
from pybit.unified_trading import HTTP
session = HTTP(
testnet=True,
api_key="XXXXX",
api_secret="XXXXX",
)
print(session.get_sub_deposit_address(
coin="USDT",
chainType="TRX",
subMemberId=592334,
))
const { RestClientV5 } = require('bybit-api');
const client = new RestClientV5({
testnet: true,
key: 'apikey',
secret: 'apisecret',
});
client
.getSubDepositAddress('USDT', 'TRX', '592334')
.then((response) => {
console.log(response);
})
.catch((error) => {
console.error(error);
});
Response Example
{
"retCode": 0,
"retMsg": "success",
"result": {
"coin": "USDT",
"chains": {
"chainType": "TRC20",
"addressDeposit": "TCB6NmwGXjn8eJYDuPxLvs4aM8Jn7gvJ1f",
"tagDeposit": "",
"chain": "TRX",
"batchReleaseLimit": "-1"
}
},
"retExtInfo": {},
"time": 1672194350819
}