Skip to main content

提币资产

提币资产

Get withdrawable assets and account-level available balances.

Request frequency limit: 1/1s

Request URL

GET /deepcoin/asset/withdraw-assets

Request Parameters

Field NameRequiredTypeDescription
ccyfalsestringCoin, for example USDT

Response Parameters

Field NameTypeDescription
dataarrayWithdrawable asset list
>ccystringCoin
>availablestringAvailable amount
>withdrawablestringWithdrawable amount
>accountsarrayAccount-level balances
>>accountTypestringAccount type: funding, spot, swap
>>availablestringAvailable amount

Response Example

{
"code": "0",
"msg": "",
"data": {
"data": [
{
"ccy": "USDT",
"available": "36378.15",
"withdrawable": "36378.15",
"accounts": [
{
"accountType": "funding",
"available": "14272.61"
},
{
"accountType": "spot",
"available": "0"
},
{
"accountType": "swap",
"available": "22105.54"
}
]
}
]
}
}