Skip to main content
GET
/
api
/
v1
/
transfer-packages
/
tiers
Get Tiers
curl --request GET \
  --url https://api.example.com/api/v1/transfer-packages/tiers
{
  "tiers": [
    {}
  ],
  "single_transfer_price": "<string>",
  "bw_fee_per_transfer": "<string>",
  "min_custom_size": 123,
  "max_custom_size": 123
}

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 Package Tiers

Returns available preset package sizes, pricing, and limits.

Response

tiers
array
Array of preset package options with size and total price
single_transfer_price
string
Price for a single transfer in TRX
bw_fee_per_transfer
string
BW Guarantee fee per transfer in TRX
min_custom_size
number
Minimum custom package size (1)
max_custom_size
number
Maximum custom package size (10,000)

Example

curl https://api.tronrental.com/v1/transfer-packages/tiers \
  -H "X-API-Key: your_api_key"
Response
{
  "tiers": [
    { "size": 100, "price_trx": "270.00" },
    { "size": 500, "price_trx": "1350.00" },
    { "size": 1000, "price_trx": "2700.00" }
  ],
  "single_transfer_price": "2.70",
  "bw_fee_per_transfer": "0.30",
  "min_custom_size": 1,
  "max_custom_size": 10000
}