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

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

TRON API method that retrieves witness rewards information for a specific account. This includes both unclaimed voting rewards and witness block production rewards.

## Parameters

* `address` — account address in hex format (21‑byte, starts with `41`).

## Response

* `reward` — total amount of TRX rewards available for withdrawal (in sun units, where 1 TRX = 1,000,000 sun)

## Use case

The `wallet/getReward` method is used for:

* Checking available voting rewards before claiming them.
* Monitoring reward accumulation from witness voting activities.
* Building reward tracking dashboards for voter accounts.
* Calculating potential returns from voting for specific witnesses.
* Automating reward claim notifications and processes.

## curl example

```shell Shell theme={"system"}
curl --request GET \
  --url 'https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getReward?address=41b487cdb2d8dc7b2a8e5e7e7b4e3e8b8b8b8b8b' \
  --header 'accept: application/json'
```

<Info>
  rewards are returned in sun (1 TRX = 1,000,000 sun). If you have a base58 address, convert it to a 21‑byte hex address (leading `41…`) before calling this endpoint. Claim rewards with [`wallet/withdrawbalance`](/reference/tron-withdrawbalance).
</Info>


## OpenAPI

````yaml openapi/tron_node_api/getreward.json GET /95e61622bf6a8af293978377718e3b77/wallet/getReward
openapi: 3.0.0
info:
  title: wallet/getreward TRON API
  version: 1.0.0
  description: Get witness rewards information
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getReward:
    get:
      tags:
        - Witness and Governance
      summary: wallet/getReward
      operationId: getReward
      parameters:
        - name: address
          in: query
          required: true
          schema:
            type: string
            description: Account address in hex format (21-byte, starts with 41)
          example: 41b487cdb2d8dc7b2a8e5e7e7b4e3e8b8b8b8b8b
      responses:
        '200':
          description: Witness rewards information
          content:
            application/json:
              schema:
                type: object
                properties:
                  reward:
                    type: number
                    description: Total reward amount in sun (1 TRX = 1,000,000 sun)
              example:
                reward: 1500000000

````