TRON Energy and Bandwidth for your AI agents
Copy and paste the prompt into your AI agent for quick integration with trongas.aiPOST https://api.trongas.ai/v1/rent
{
"address": "TXYZ...4f9a",
"resource": "ENERGY",
"amount": 65000,
"duration": "1h"
}How it works
Three steps from request to delegated resources.01
Connect via API
Generate an API key and authenticate. One REST endpoint, SDKs for Python and JavaScript.02
Request Energy / Bandwidth
Specify the target address, resource type and amount. We quote the cost instantly.03
We delegate instantly
Resources are delegated to your address in ~0.3s — your transaction goes through without burning TRX.Pricing
Below are the prices for our services. For more details, contact support.Bandwidth
0.18 TRX
/ 350 BandwidthUp to 2M Energy / month
1 API key
Community support
Standard delegation (~1s)
Energy
2.93 TRX
/ 65k EnergyUp to 50M Energy / month
10 API keys
Priority delegation (~0.3s)
Email & Slack support
Usage webhooks
Staking
21.40% APY
Unlimited Energy
Unlimited API keys
Dedicated delegation pool
99.99% uptime SLA
Solutions engineer
One call to rent resources
Callrent() from any stack and get a delegated response back in milliseconds.from trongasai import Client
client = Client(api_key="tg_live_8f2c...")
resp = client.rent(
address="TXYZ...4f9a",
resource="ENERGY",
amount=65000,
duration="1h",
)
print(resp.status, resp.tx_id){
"status": "delegated",
"tx_id": "9b1f...c4e2",
"resource": "ENERGY",
"amount": 65000,
"delegated_to": "TXYZ...4f9a",
"expires_at": "2026-06-19T13:30:00Z",
"cost_trx": 0.78,
"latency_ms": 312
}