> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# walletsolidity/getaccount | TRON

> TRON API method that retrieves account details from solidified blocks. This method queries confirmed and finalized blockchain state.

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.

## 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


## OpenAPI

````yaml openapi/tron_node_api/walletsolidity_getaccount.json post /95e61622bf6a8af293978377718e3b77/walletsolidity/getaccount
openapi: 3.0.0
info:
  title: walletsolidity/getaccount TRON API
  version: 1.0.0
  description: Get account information from solidified database
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/walletsolidity/getaccount:
    post:
      tags:
        - Solidity Query
      summary: walletsolidity/getaccount
      operationId: getSolidityAccount
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - address
              properties:
                address:
                  type: string
                  default: TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g
                visible:
                  type: boolean
                  default: true
      responses:
        '200':
          description: Account information from solidified database
          content:
            application/json:
              schema:
                type: object
                properties:
                  account_name:
                    type: string
                  address:
                    type: string
                  balance:
                    type: integer
                  create_time:
                    type: integer
                  latest_opration_time:
                    type: integer
                  asset:
                    type: object
                  assetV2:
                    type: array
                    items:
                      type: object
                  frozen:
                    type: array
                    items:
                      type: object
                  net_usage:
                    type: object
                  energy_usage:
                    type: object
                  owner_permission:
                    type: object
                  witness_permission:
                    type: object
                  active_permission:
                    type: array
                    items:
                      type: object

````