POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
getavailableunfreezecount
wallet/getavailableunfreezecount
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getavailableunfreezecount \
  --header 'Content-Type: application/json' \
  --data '{
  "owner_address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
  "visible": true
}'
{
  "count": 123
}
TRON API method that retrieves the available unfreeze count for an account under the Stake 2.0 mechanism. This shows how many unfreeze operations can still be performed.
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 available unfreeze count
  • visible — optional boolean parameter. When set to true, addresses are in base58 format. Default is false.

Response

  • count — the number of available unfreeze operations remaining for this account

Use case

The wallet/getavailableunfreezecount method is used for:
  • Checking how many more unfreeze operations an account can perform
  • Planning resource management strategies
  • Building user interfaces that show unfreeze limitations
  • Implementing safeguards against exceeding unfreeze limits
  • Monitoring account resource flexibility

Body

application/json

Response

200 - application/json

Available unfreeze count

The response is of type object.