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

> TRON API method that retrieves the current bandwidth prices on the TRON network, showing the cost of bandwidth for transaction processing.

TRON API method that retrieves the current bandwidth prices on the TRON network, showing the cost of bandwidth for transaction processing.

## Parameters

This method does not require any parameters.

## Response

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

## Use case

The `wallet/getbandwidthprices` method is used for:

* Monitoring current bandwidth costs for transaction processing
* Building transaction fee estimation tools
* Analyzing network congestion through bandwidth pricing
* Optimizing transaction timing based on cost
* Creating cost-aware transaction batching systems


## OpenAPI

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

````