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/{id}/tokens. Token symbol is not returned in the response.
Account Properties
The client operator private key is required to sign the query request.
Methods
Method
Type
Requirement
setAccountId(<accountId>)
AccountId
Required
<AccountInfo>.accountId
AccountId
Optional
<AccountInfo>.contractAccountId
String
Optional
<AccountInfo>.isDeleted
boolean
Optional
<AccountInfo>.key
Key
Optional
<AccountInfo>.balance
HBAR
Optional
<AccountInfo>.isReceiverSignatureRequired
boolean
Optional
<AccountInfo>.ownedNfts
long
Optional
<AccountInfo>.maxAutomaticTokenAssociations
int
Optional
<AccountInfo>.accountMemo
String
Optional
<AccountInfo>.expirationTime
Instant
Optional
<AccountInfo>.autoRenewPeriod
Duration
Optional
<AccountInfo>.ledgerId
LedgerId
Optional
<AccountInfo>.ethereumNonce
long
Optional
<AccountInfo>.stakingInfo
StakingInfo
Optional
<AccountInfo>.tokenRelationships
Map<TokenId, TokenRelationships>
Optional
//Create the account info queryAccountInfoQuery query =newAccountInfoQuery().setAccountId(newAccountId);//Submit the query to a Hedera networkAccountInfo accountInfo =query.execute(client);//Print the account key to the consoleSystem.out.println(accountInfo);//v2.0.0
//Create the account info queryconstquery=newAccountInfoQuery().setAccountId(newAccountId);//Sign with client operator private key and submit the query to a Hedera networkconstaccountInfo=awaitquery.execute(client);//Print the account info to the consoleconsole.log(accountInfo);//v2.0.0
//Create the account info queryquery := hedera.NewAccountInfoQuery().SetAccountID(newAccountId)//Sign with client operator private key and submit the query to a Hedera networkaccountInfo, err := query.Execute(client)if err !=nil {panic(err)}//Print the account info to the consolefmt.Println(accountInfo)//v2.0.0