Skip to main content
POST
/
api
/
v1
/
smart-mode
/
activate
Activate
curl --request POST \
  --url https://api.example.com/api/v1/smart-mode/activate \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "<string>",
  "label": "<string>",
  "bw_guarantee": true
}
'

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 Smart Mode

Starts automatic energy delivery for the specified address. The first daily fee is charged immediately.

Request body

address
string
required
TRON address to monitor
label
string
Optional label for this subscription
bw_guarantee
boolean
default:"true"
Enable BW Guarantee (+0.3 TRX per transfer)

Response

Returns the created subscription object with id, address, status, and fee details.

Example

curl -X POST https://api.tronrental.com/v1/smart-mode/activate \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "address": "TYourAddress...",
    "label": "Main wallet",
    "bw_guarantee": true
  }'
Response
{
  "id": 42,
  "address": "TYourAddress...",
  "label": "Main wallet",
  "status": "active",
  "bw_guarantee": true,
  "subscription_fee_trx": "3.0",
  "transfer_fee_trx": "2.7",
  "created_at": "2026-03-05T12:00:00Z"
}
The address cannot have an active Transfer Package at the same time. Smart Mode and Transfer Packages are mutually exclusive per address.