A query that returns the account balance for the specified account. Requesting an account balance is currently free of charge. Queries do not change the state of the account or require network consensus. The information is returned from a single node processing the query.
In Services release 0.50, returning token balance from the consensus node was deprecated with HIP-367. This query returns token information by requesting the information from the Hedera Mirror Node APIs via /api/v1/accounts/{id}/tokens. Token symbol is not returned in the response.
Query Fees
Please see the transaction and query fees table for the base transaction fee.
The client operator private key is required to sign the query request.
Methods
Method
Type
Description
setAccountId(<accountId>)
AccountID
The account ID to return the current balance for.
setContractId(<contractId>)
ContractID
The contract ID to return the current balance for.
//Create the account balance queryAccountBalanceQuery query =newAccountBalanceQuery().setAccountId(accountId);//Sign with client operator private key and submit the query to a Hedera networkAccountBalance accountBalance =query.execute(client);//Print the balance of hbarsSystem.out.println("The hbar account balance for this account is "+accountBalance.hbars);//v2.0.0
//Create the account balance queryconstquery=newAccountBalanceQuery().setAccountId(accountId);//Submit the query to a Hedera networkconstaccountBalance=awaitquery.execute(client);//Print the balance of hbarsconsole.log("The hbar account balance for this account is "+accountBalance.hbars);//v2.0.7
//Create the account balance queryquery := hedera.NewAccountBalanceQuery().SetAccountID(newAccountId)//Sign with client operator private key and submit the query to a Hedera networkaccountBalance, err := query.Execute(client)if err !=nil {panic(err)}//Print the balance of hbarsfmt.Println("The hbar account balance for this account is ", accountBalance.Hbars.String())//v2.0.0