POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
getcanwithdrawunfreezeamount
wallet/getcanwithdrawunfreezeamount
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
}
TRON API method that retrieves the amount that can be withdrawn after unfreezing resources under the Stake 2.0 mechanism.
Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • owner_address — the account address to query for withdrawable unfreeze amount
  • timestamp — optional timestamp to check withdrawable amount at a specific time
  • visible — optional boolean parameter. When set to true, addresses are in base58 format. Default is false.

Response

  • amount — the total amount of TRX that can be withdrawn from completed unfreeze operations

Use case

The wallet/getcanwithdrawunfreezeamount method is used for:
  • Checking how much TRX is available for withdrawal after unfreezing
  • Planning liquidity management for accounts
  • Building user interfaces showing withdrawable balances
  • Implementing automatic withdrawal triggers
  • Monitoring completed unfreeze operations

Body

application/json

Response

200 - application/json

Withdrawable unfreeze amount

The response is of type object.