Skip to main content

Welcome to TronRental API

TronRental provides a REST API for renting TRON energy and bandwidth. Reduce your USDT transfer costs by up to 80% compared to burning TRX.

What you can do

Base URL

All API requests use the following base URL:
https://api.tronrental.com/v1

Quick example

curl -X POST https://api.tronrental.com/v1/energy/buy \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "address": "TYourTronAddress...",
    "energy_amount": 65000,
    "duration_hours": 1
  }'
Response
{
  "order_id": 12345,
  "address": "TYourTronAddress...",
  "energy_amount": 65000,
  "duration_hours": 1,
  "price_trx": "2.75",
  "status": "pending"
}

Next steps

1

Get your API key

Sign up at tronrental.com and create an API key in the dashboard.
2

Check current prices

Call GET /api/v1/prices to see current energy and bandwidth prices.
3

Make your first purchase

Use POST /api/v1/energy/buy to buy energy for a TRON address.