> ## 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/getcanwithdrawunfreezeamount | TRON

> TRON API method that retrieves the amount that can be withdrawn after unfreezing resources under the Stake 2.0 mechanism. On TRON.

TRON API method that retrieves the amount that can be withdrawn after unfreezing resources under the Stake 2.0 mechanism.

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


## OpenAPI

````yaml openapi/tron_node_api/getcanwithdrawunfreezeamount.json post /95e61622bf6a8af293978377718e3b77/wallet/getcanwithdrawunfreezeamount
openapi: 3.0.0
info:
  title: wallet/getcanwithdrawunfreezeamount TRON API
  version: 1.0.0
  description: Get withdrawable amount from unfrozen resources
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getcanwithdrawunfreezeamount:
    post:
      tags:
        - Staking
      summary: wallet/getcanwithdrawunfreezeamount
      operationId: getCanWithdrawUnfreezeAmount
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - owner_address
              properties:
                owner_address:
                  type: string
                  default: TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g
                timestamp:
                  type: integer
                  description: Timestamp in milliseconds
                visible:
                  type: boolean
                  default: true
      responses:
        '200':
          description: Withdrawable unfreeze amount
          content:
            application/json:
              schema:
                type: object
                properties:
                  amount:
                    type: integer

````