curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getcanwithdrawunfreezeamount \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"timestamp": 123,
"visible": true
}'
{
"amount": 123
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getcanwithdrawunfreezeamount \
--header 'Content-Type: application/json' \
--data '{
"owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
"timestamp": 123,
"visible": true
}'
{
"amount": 123
}
owner_address
— the account address to query for withdrawable unfreeze amounttimestamp
— optional timestamp to check withdrawable amount at a specific timevisible
— optional boolean parameter. When set to true
, addresses are in base58 format. Default is false
.amount
— the total amount of TRX that can be withdrawn from completed unfreeze operationswallet/getcanwithdrawunfreezeamount
method is used for:
Withdrawable unfreeze amount
The response is of type object
.