> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# wallet/getavailableunfreezecount | TRON

> TRON API method that retrieves the available unfreeze count for an account under the Stake 2.0 mechanism. Chainstack TRON reference.

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.

## 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


## OpenAPI

````yaml openapi/tron_node_api/getavailableunfreezecount.json post /95e61622bf6a8af293978377718e3b77/wallet/getavailableunfreezecount
openapi: 3.0.0
info:
  title: wallet/getavailableunfreezecount TRON API
  version: 1.0.0
  description: Get available unfreeze count for an account
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getavailableunfreezecount:
    post:
      tags:
        - Staking
      summary: wallet/getavailableunfreezecount
      operationId: getAvailableUnfreezeCount
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - owner_address
              properties:
                owner_address:
                  type: string
                  default: TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g
                visible:
                  type: boolean
                  default: true
      responses:
        '200':
          description: Available unfreeze count
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    type: integer

````