Integrate TRON energy delegation into your product.
Web interface to bulk-distribute energy to many wallets, monitor consumption, and export logs.
Use secure token-based calls to automate delegation from your backend.
// Request example
POST /v1/energy/delegate
Authorization: Bearer <API_KEY>
Content-Type: application/json
{
"to": "TSxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"package": "65000" // or 130000
}
// Response example
200 OK
{
"status": "ok",
"tx_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"energy": 65000,
"expires_in_sec": 3600
}
// Balance
GET /v1/balance
Authorization: Bearer <API_KEY>
// Webhook (optional)
POST https://your.app/hooks/gasfree
{ "event": "delegated", "to": "TS...", "energy": 65000, "ts": 1723880000 }
Endpoints and tokens are issued individually after onboarding.
Client deposits TRX to a designated address. Deposited TRX is converted into internal points, which can be used to pay for delegated energy. Points have no standalone monetary value outside the service.