--- title: getAvailableUnfreezeCount --- # getAvailableUnfreezeCount Query the number of times an account can operate UnFreezeBalanceV2 to unfreeze under the V2 interface. (v5.1.0 new interface) ## Usage ```js tronWeb.trx.getAvailableUnfreezeCount(address, options); ``` ## Parameters | Parametersf | Parameter Description | Type | |-------|-------|-------| | address | account address (base58 or hex) | String | | options | Optional. Default is `{ confirmed: true }`. If `options.confirmed` is `true`, the result is queried from solidity node. | `{ confirmed: boolean }` | ## Return Object - An object including the number of times an account can operate UnFreezeBalanceV2 to unfreeze, see the example below. ## Example ```js await tronWeb.trx.getAvailableUnfreezeCount('TMVQGm1qAQYVdetCeGRRkTWYYrLXuHK2HC'); // output-start { "count": 32 } // output-end ```