Skip to main content
A query that returns the current state of the account. This query does not include the list of records associated with the account. Anyone on the network can request account info for a given account. 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 information from the consensus node was deprecated with HIP-367. This query now returns token information by requesting the information from the Hedera Mirror Node APIs via /api/v1/accounts//tokens. Token symbol is not returned in the response. Account Properties

Account Properties

Query Fees
  • Please see the transaction and query fees table for the base transaction fee
  • Please use the Hedera fee estimator to estimate your query fee cost
Query Signing Requirements
  • The client operator private key is required to sign the query request.

Methods

MethodTypeRequirement
setAccountId(<accountId>)AccountIdRequired
<AccountInfo>.accountIdAccountIdOptional
<AccountInfo>.contractAccountIdStringOptional
<AccountInfo>.isDeletedbooleanOptional
<AccountInfo>.keyKeyOptional
<AccountInfo>.balanceHBAROptional
<AccountInfo>.isReceiverSignatureRequiredbooleanOptional
<AccountInfo>.ownedNftslongOptional
<AccountInfo>.maxAutomaticTokenAssociationsintOptional
<AccountInfo>.accountMemoStringOptional
<AccountInfo>.expirationTimeInstantOptional
<AccountInfo>.autoRenewPeriodDurationOptional
<AccountInfo>.ledgerIdLedgerIdOptional
<AccountInfo>.ethereumNoncelongOptional
<AccountInfo>.stakingInfoStakingInfoOptional
<AccountInfo>.tokenRelationshipsMap<TokenId, TokenRelationships>Optional
//Create the account info query
AccountInfoQuery query = new AccountInfoQuery()
    .setAccountId(newAccountId);

//Submit the query to a Hedera network
AccountInfo accountInfo = query.execute(client);
    
//Print the account key to the console
System.out.println(accountInfo);

//v2.0.0