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

> TRON API method that retrieves the current energy prices on the TRON network, showing the cost of energy for smart contract execution.

TRON API method that retrieves the current energy prices on the TRON network, showing the cost of energy for smart contract execution.

## Parameters

This method does not require any parameters.

## Response

* `prices` — energy pricing information including current rates and historical data

## Use case

The `wallet/getenergyprices` method is used for:

* Monitoring current energy costs for smart contract operations
* Building fee estimation tools for DApp users
* Analyzing network congestion through energy pricing
* Optimizing smart contract execution timing
* Creating cost-aware transaction scheduling systems


## OpenAPI

````yaml openapi/tron_node_api/getenergyprices.json post /95e61622bf6a8af293978377718e3b77/wallet/getenergyprices
openapi: 3.0.0
info:
  title: wallet/getenergyprices TRON API
  version: 1.0.0
  description: Get current energy prices on the network
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getenergyprices:
    post:
      tags:
        - Network Info
      summary: wallet/getenergyprices
      operationId: getEnergyPrices
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties: {}
      responses:
        '200':
          description: Current energy prices
          content:
            application/json:
              schema:
                type: object
                properties:
                  prices:
                    type: string

````