> For the complete documentation index, see [llms.txt](https://developers.aixchain.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.aixchain.com/http-api/api-list/account-resources/getaccountresource.md).

# GetAccountResource

Query the resource information of an account(bandwidth,energy,etc)

**BODY PARAMS**

`{`

**`address`**` ``string`

**`visible`**` ``boolean (optional)`

`}`

**Note:**

| Parameter         | Description                                  |
| ----------------- | -------------------------------------------- |
| freeNetUsed       | Free bandwidth used                          |
| freeNetLimit      | Total free bandwidth                         |
| NetUsed           | Used amount of bandwidth obtained by staking |
| NetLimit          | Total bandwidth obtained by staking          |
| TotalNetLimit     | Total bandwidth can be obtained by staking   |
| TotalNetWeight    | Total TRX staked for bandwidth               |
| tronPowerLimit    | TRON Power(vote)                             |
| EnergyUsed        | Energy used                                  |
| EnergyLimit       | Total energy obtained by staking             |
| TotalEnergyLimit  | Total energy can be obtained by staking      |
| TotalEnergyWeight | Total TRX staked for energy                  |

**Example:**

curl --request POST\
\--url <http://172.104.51.182:16667/wallet/getaccountresource>\
\--header 'Accept: application/json'\
\--header 'Content-Type: application/json'\
\--data ' { "address": "AFzFXoQCgUeoApjejKM9B46NgFGHXvUyKz" }

**Input:**&#x20;

`{ "address": "AFzFXoQCgUeoApjejKM9B46NgFGHXvUyKz", "visible": true }`

**Response:**&#x20;

`{`&#x20;

`"freeNetUsed": 373, "freeNetLimit": 5000, "TotalNetLimit": 43200000000, "TotalNetWeight": 2225116, "TotalEnergyLimit": 50000000000000, "TotalEnergyWeight": 1108611`&#x20;

`}`
