Skip to main content
GET
/
api
/
v1
/
smart-mode
/
fees
Get Fees
curl --request GET \
  --url https://api.example.com/api/v1/smart-mode/fees
{
  "subscription_fee_trx": "<string>",
  "transfer_fee_trx": "<string>",
  "bw_fee_trx": "<string>"
}

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.

Get Smart Mode Fees

Returns the current Smart Mode pricing for your account. If custom pricing is configured, returns your personalized rates.

Response

subscription_fee_trx
string
Daily subscription fee in TRX
transfer_fee_trx
string
Per-transfer fee in TRX
bw_fee_trx
string
BW Guarantee fee per transfer in TRX

Example

curl https://api.tronrental.com/v1/smart-mode/fees \
  -H "X-API-Key: your_api_key"
{
  "subscription_fee_trx": "3.0",
  "transfer_fee_trx": "2.7",
  "bw_fee_trx": "0.3"
}