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

# wallet/getaccount | TRON

> TRON API method that retrieves detailed account information for a given address. Reference for wallet/getaccount on TRON via Chainstack.

TRON API method that retrieves detailed account information for a given address. This method returns comprehensive data about an account including balances, resources, and account metadata.

## Parameters

* `address` — the TRON account address to query. Can be in base58 or hex format.
* `visible` — optional boolean parameter. When set to `true`, the address should be in base58 format. Default is `false`.

## Response

* `address` — the account address in hex format
* `balance` — the TRX balance in sun (1 TRX = 1,000,000 sun)
* `create_time` — account creation timestamp
* `latest_operation_time` — timestamp of the last operation
* `free_net_usage` — free bandwidth used
* `latest_consume_free_time` — last free bandwidth consumption time
* `account_resource` — resource information including energy and bandwidth
* `owner_permission` — owner permission settings
* `active_permission` — active permission settings
* `frozenV2` — frozen balance details for resource delegation
* `asset` — TRC10 token balances
* `assetV2` — detailed TRC10 token information

## Use case

The `wallet/getaccount` method is essential for:

* Retrieving account balances and resource information.
* Checking account permissions and multi-signature settings.
* Monitoring frozen balances and resource delegations.
* Displaying account information in wallets and explorers.
* Verifying account existence before sending transactions.


## OpenAPI

````yaml openapi/tron_node_api/getaccount.json post /95e61622bf6a8af293978377718e3b77/wallet/getaccount
openapi: 3.0.0
info:
  title: wallet/getaccount TRON API
  version: 1.0.0
  description: Get detailed account information from the TRON network
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getaccount:
    post:
      tags:
        - Account Management
      summary: wallet/getaccount
      operationId: getAccount
      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
          content:
            application/json:
              schema:
                type: object
                properties:
                  address:
                    type: string
                  balance:
                    type: integer
                  create_time:
                    type: integer
                  latest_operation_time:
                    type: integer
                  free_net_usage:
                    type: integer
                  account_resource:
                    type: object
                  owner_permission:
                    type: object
                  active_permission:
                    type: array

````