Skip to main content

提币链列表

提币链列表

Get supported withdrawal chains for a coin.

Request frequency limit: 1/1s

Request URL

GET /deepcoin/asset/withdraw-chains

Request Parameters

Field NameRequiredTypeDescription
ccytruestringCoin, for example USDT

Response Parameters

Field NameTypeDescription
dataarrayWithdrawal chain list
>ccystringCoin
>chainstringOpenAPI chain value, for example USDT-TRC20
>chainNamestringChain name, for example TRC20
>chainTypestringPlatform chain type code, for example 8 = TRC20
>withdrawEnabledbooleanWhether withdrawals are enabled on this chain
>statestringChain state: 1 enabled, 0 disabled
>minWdstringMinimum withdrawal amount
>feestringWithdrawal fee
>precisionstringWithdrawal amount precision
>needMemobooleanWhether memo/tag/payment ID is required
>reasonstringReminder 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
}
]
}
}