> For the complete documentation index, see [llms.txt](https://docs.getblock.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.getblock.io/api-reference/tron-trx/tron-grpc-api/getaccountnet-tron.md).

# GetAccountNet - Tron

This method returns an account's Bandwidth (network) state: free and staked Bandwidth limits, usage, and the network Bandwidth pool.

## Service

This method is served by the `protocol.Wallet` service.

## Method

```protobuf
rpc GetAccountNet (Account) returns (AccountNetMessage)
```

## Request Message

`Account`

| Field   | Type  | Description                                |
| ------- | ----- | ------------------------------------------ |
| address | bytes | Account address as raw bytes (41-prefixed) |

## Request

{% tabs %}
{% tab title="grpcurl" %}
{% code overflow="wrap" %}

```bash
grpcurl -H 'x-api-key: <ACCESS-TOKEN>' \
  -d '{"address": "41f0cc5a2a84cd0f68ed1667070934542d673acbd8"}' \
  shared.eu-central-1.getblock.io:443 protocol.Wallet/GetAccountNet
```

{% endcode %}
{% endtab %}

{% tab title="Python" %}
{% code title="example.py" %}

```python
import grpc
# Stubs generated from java-tron's api.proto with grpcio-tools
from api import api_pb2_grpc
from core import Contract_pb2, Tron_pb2

creds = grpc.ssl_channel_credentials()
channel = grpc.secure_channel('shared.eu-central-1.getblock.io:443', creds)
metadata = [('x-api-key', '<ACCESS-TOKEN>')]
stub = api_pb2_grpc.WalletStub(channel)

response = stub.GetAccountNet(Tron_pb2.Account(address=bytes.fromhex('41f0cc5a2a84cd0f68ed1667070934542d673acbd8')), metadata=metadata)
print(response)
```

{% endcode %}
{% endtab %}

{% tab title="Go" %}
{% code title="example.go" %}

```go
conn, _ := grpc.Dial(
    "shared.eu-central-1.getblock.io:443",
    grpc.WithTransportCredentials(credentials.NewTLS(&tls.Config{})),
)
defer conn.Close()

client := api.NewWalletClient(conn)
ctx := metadata.AppendToOutgoingContext(
    context.Background(), "x-api-key", "<ACCESS-TOKEN>")

resp, _ := client.GetAccountNet(ctx, &core.Account{Address: addrBytes})
fmt.Println(resp)
```

{% endcode %}
{% endtab %}
{% endtabs %}

## Response Message

`AccountNetMessage`

| Field         | Type  | Description                               |
| ------------- | ----- | ----------------------------------------- |
| freeNetLimit  | int64 | Free Bandwidth available to every account |
| NetLimit      | int64 | Bandwidth available from staked TRX       |
| NetUsed       | int64 | Bandwidth consumed in the current window  |
| TotalNetLimit | int64 | Total Bandwidth pool across the network   |

## Use Cases

* **Bandwidth Checks**: Read available Bandwidth before broadcasting
* **Free Quota**: Track the free daily Bandwidth allowance
* **Staking Decisions**: Gauge whether to stake for Bandwidth
* **Monitoring**: Track Bandwidth usage over time

## Error Handling

| Code | Status            | Description                                                 |
| ---- | ----------------- | ----------------------------------------------------------- |
| 3    | INVALID\_ARGUMENT | A request field is missing or malformed                     |
| 5    | NOT\_FOUND        | The requested account, block, or transaction does not exist |
| 16   | UNAUTHENTICATED   | The access token is missing or invalid                      |
| 13   | INTERNAL          | The node failed to process the request                      |
