Skip to main content
GET
/
api
/
v1
/
prices
Get Prices
curl --request GET \
  --url https://api.example.com/api/v1/prices
{
  "energy_price_sun": 123,
  "energy_price_1k_trx": "<string>",
  "bw_price_1k_trx": "<string>",
  "trx_usd_rate": "<string>",
  "burn_sun_per_energy": 123,
  "min_energy": 123,
  "max_energy": 123
}

Get Prices

Returns current market prices for energy and bandwidth. This endpoint is public — no authentication required.

Response

energy_price_sun
number
Current energy price in SUN per unit
energy_price_1k_trx
string
Price for 1,000 energy units in TRX
bw_price_1k_trx
string
Price for 1,000 bandwidth units in TRX
trx_usd_rate
string
Current TRX/USD exchange rate
burn_sun_per_energy
number
Network burn rate — SUN per energy unit (currently 100)
min_energy
number
Minimum energy amount per order
max_energy
number
Maximum energy amount per order

Example

curl https://api.tronrental.com/v1/prices
Response values below are examples. Actual prices update in real-time based on market conditions.
Response
{
  "energy_price_sun": 42,
  "energy_price_1k_trx": "2.75",
  "bw_price_1k_trx": "9.60",
  "trx_usd_rate": "0.234",
  "burn_sun_per_energy": 100,
  "min_energy": 32000,
  "max_energy": 5000000
}