提币链列表
提币链列表
Get supported withdrawal chains for a coin.
Request frequency limit: 1/1s
Request URL
GET /deepcoin/asset/withdraw-chains
Request Parameters
| Field Name | Required | Type | Description |
|---|---|---|---|
| ccy | true | string | Coin, for example USDT |
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| data | array | Withdrawal chain list |
| >ccy | string | Coin |
| >chain | string | OpenAPI chain value, for example USDT-TRC20 |
| >chainName | string | Chain name, for example TRC20 |
| >chainType | string | Platform chain type code, for example 8 = TRC20 |
| >withdrawEnabled | boolean | Whether withdrawals are enabled on this chain |
| >state | string | Chain state: 1 enabled, 0 disabled |
| >minWd | string | Minimum withdrawal amount |
| >fee | string | Withdrawal fee |
| >precision | string | Withdrawal amount precision |
| >needMemo | boolean | Whether memo/tag/payment ID is required |
| >reason | string | Reminder or notice |
Response Example
{
"code": "0",
"msg": "",
"data": {
"data": [
{
"ccy": "USDT",
"chain": "USDT-TRC20",
"chainName": "TRC20",
"chainType": "8",
"withdrawEnabled": true,
"state": "1",
"minWd": "10",
"fee": "11",
"precision": "2",
"needMemo": false
}
]
}
}