POST
/
95e61622bf6a8af293978377718e3b77
/
walletsolidity
/
getaccount
walletsolidity/getaccount
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/walletsolidity/getaccount \
  --header 'Content-Type: application/json' \
  --data '{
  "address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
  "visible": true
}'
{
  "account_name": "<string>",
  "address": "<string>",
  "balance": 123,
  "create_time": 123,
  "latest_opration_time": 123,
  "asset": {},
  "assetV2": [
    {}
  ],
  "frozen": [
    {}
  ],
  "net_usage": {},
  "energy_usage": {},
  "owner_permission": {},
  "witness_permission": {},
  "active_permission": [
    {}
  ]
}
TRON API method that retrieves account details from solidified blocks. This method queries confirmed and finalized blockchain state, providing reliable account information that cannot be rolled back.
Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • address — the account address in hex format (41 prefix) or base58check format
  • visible — whether the address is in readable format (base58check)

Response

Returns detailed account information including:
  • account_name — the account name (if set)
  • address — the account address
  • balance — TRX balance in sun (1 TRX = 1,000,000 sun)
  • frozen — frozen balance information for energy and bandwidth
  • asset_v2 — TRC-10 token balances
  • allowance — delegated resource allowances
  • votes — voting information for Super Representatives
  • create_time — account creation timestamp

Use case

The walletsolidity/getaccount method is used for:
  • Retrieving confirmed account balances and asset holdings from solidified blocks
  • Checking account resource delegations and frozen balances in finalized state
  • Analyzing account voting patterns from confirmed blockchain data
  • Building applications that require reliable, non-reversible account information

Body

application/json

Response

200 - application/json

Account information from solidified database

The response is of type object.