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

> TRON API method that retrieves information about burned TRX tokens, showing the total amount of TRX permanently removed from circulation.

TRON API method that retrieves information about burned TRX tokens, showing the total amount of TRX permanently removed from circulation.

## Parameters

This method does not require any parameters.

## Response

* `burnTrxAmount` — the total amount of TRX that has been burned (in sun units)

## Use case

The `wallet/getburntrx` method is used for:

* Monitoring the deflationary mechanism of the TRON network
* Analyzing the total supply reduction over time
* Building economic analysis tools for TRON tokenomics
* Creating dashboards showing network burn statistics
* Tracking the impact of transaction fees on TRX supply


## OpenAPI

````yaml openapi/tron_node_api/getburntrx.json post /95e61622bf6a8af293978377718e3b77/wallet/getburntrx
openapi: 3.0.0
info:
  title: wallet/getburntrx TRON API
  version: 1.0.0
  description: Get information about burned TRX tokens
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getburntrx:
    post:
      tags:
        - Network Info
      summary: wallet/getburntrx
      operationId: getBurnTrx
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties: {}
      responses:
        '200':
          description: Burned TRX information
          content:
            application/json:
              schema:
                type: object
                properties:
                  burnTrxAmount:
                    type: integer

````