查詢主帳戶充值地址信息
主帳戶充值地址信息查詢
HTTP 請求
GET /asset/v3/private/deposit/address/query
請求參數
| 參數 | 是否必須 | 類型 | 說明 |
|---|---|---|---|
| coin | true | string | 幣種 |
| chainType | false | string | 鏈. 若為空,則返回全部.
|
返回參數
| 參數 | 類型 | 說明 |
|---|---|---|
| coin | string | 幣種 |
| chains | array | Object |
| > chainType | string | 鏈類型 |
| > addressDeposit | string | 充值地址 |
| > tagDeposit | string | 充值tag |
| > chain | string | 鏈名 |
| > batchReleaseLimit | string | 當前幣鏈每日充值限額. "-1"表示無限制 |
請求示例
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
響應示例
{
"retCode": 0,
"retMsg": "success",
"result": {
"coin": "USDT",
"chains": [
{
"chainType": "ERC20",
"addressDeposit": "xxxxxxxxxxx",
"tagDeposit": "",
"chain": "ETH",
"batchReleaseLimit": "ETH"
}
]
},
"retExtInfo": {},
"time": 1671174181514
}