提币地址白名单
提币地址白名单
Get withdrawal whitelist addresses.
Request frequency limit: 1/1s
Request URL
GET /deepcoin/asset/withdraw-addresses
Request Parameters
| Field Name | Required | Type | Description |
|---|---|---|---|
| ccy | true | string | Coin, for example USDT |
| chain | false | string | Chain, for example USDT-TRC20 |
| addressId | false | string | Whitelist address ID |
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| data | array | Whitelist address list |
| >addressId | string | Whitelist address ID |
| >ccy | string | Coin |
| >chain | string | OpenAPI chain value, for example USDT-TRC20 |
| >chainType | string | Platform chain type |
| >toAddr | string | Withdrawal address |
| >label | string | Address label |
| >apiWithdrawEnabled | boolean | Whether API withdrawals are enabled |
Response Example
{
"code": "0",
"msg": "",
"data": {
"data": [
{
"addressId": "574",
"ccy": "USDT",
"chain": "USDT-TRC20",
"chainType": "8",
"toAddr": "TEV1gDkDST3kUtv27SCYfbAoz7ukLMwJdS",
"label": "max",
"apiWithdrawEnabled": true
}
]
}
}