> ## 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/getaccountnet | TRON

> TRON API method that retrieves network resource information for a specific account. Available on TRON via Chainstack JSON-RPC nodes.

TRON API method that retrieves network resource information for a specific account. This method provides detailed information about an account's bandwidth usage, including free bandwidth, frozen bandwidth, and network resource consumption statistics.

## Parameters

* `address` — the account address to query network resources for (hex format)
* `visible` — optional boolean to specify address format (default: false for hex format)

## Response

* `freeNetUsed` — amount of free bandwidth used
* `freeNetLimit` — total free bandwidth limit available
* `NetUsed` — amount of staked bandwidth used
* `NetLimit` — total staked bandwidth limit available
* `TotalNetLimit` — total network bandwidth limit
* `TotalNetWeight` — total network weight for bandwidth calculation
* `netUsed` — current bandwidth usage
* `netLimit` — current bandwidth limit
* `TotalEnergyLimit` — total energy limit (if applicable)
* `TotalEnergyWeight` — total energy weight (if applicable)

## Use case

The `wallet/getaccountnet` method is used for:

* Monitoring bandwidth usage and limits for transaction planning.
* Checking free bandwidth allocation and consumption.
* Analyzing network resource utilization for cost optimization.
* Determining if additional bandwidth staking is needed for smooth operations.


## OpenAPI

````yaml openapi/tron_node_api/getaccountnet.json post /95e61622bf6a8af293978377718e3b77/wallet/getaccountnet
openapi: 3.0.0
info:
  title: wallet/getaccountnet TRON API
  version: 1.0.0
  description: Get account network resource information
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getaccountnet:
    post:
      tags:
        - Account Information
      summary: wallet/getaccountnet
      operationId: getAccountNet
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - address
              properties:
                address:
                  type: string
                  default: 41608f8da72479edc7dd921e4c30bb7e7cddbe722e
                visible:
                  type: boolean
                  default: false
      responses:
        '200':
          description: Account network resource information
          content:
            application/json:
              schema:
                type: object
                properties:
                  freeNetUsed:
                    type: integer
                    description: Free bandwidth used
                  freeNetLimit:
                    type: integer
                    description: Free bandwidth limit
                  NetUsed:
                    type: integer
                    description: Staked bandwidth used
                  NetLimit:
                    type: integer
                    description: Staked bandwidth limit
                  TotalNetLimit:
                    type: integer
                    description: Total network bandwidth limit
                  TotalNetWeight:
                    type: integer
                    description: Total network weight
                  netUsed:
                    type: integer
                    description: Current bandwidth usage
                  netLimit:
                    type: integer
                    description: Current bandwidth limit
                  TotalEnergyLimit:
                    type: integer
                    description: Total energy limit
                  TotalEnergyWeight:
                    type: integer
                    description: Total energy weight

````