Documentation Index
Fetch the complete documentation index at: https://docs.tronrental.com/llms.txt
Use this file to discover all available pages before exploring further.
Activate Address
Activates a TRON address that has never received any transaction. Required before the address can receive tokens.
Cost: 1.1 TRX (deducted from your balance)
Request body
TRON address to activate (T… format)
Response
Whether activation was successful
Activation transaction hash
Example
curl -X POST https://api.tronrental.com/v1/energy/activate \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{"address": "TNewInactiveAddress..."}'
{
"success": true,
"tx_hash": "a1b2c3d4e5f6..."
}