Skip to main content
GET
/
api
/
v1
/
bandwidth
/
rentals
List Auto-renew Rentals
curl --request GET \
  --url https://api.example.com/api/v1/bandwidth/rentals

List Auto-renew Rentals

Returns your auto-renew bandwidth rentals, newest first.

Query parameters

status
string
Filter by status: active, cancelled, or ended_insufficient_balance

Response

Returns rentals — an array of rental objects with status, volume, daily_trx, total_charged_trx, next_billing_at, and timestamps.

Rental statuses

StatusDescription
activeDelegated and billing daily
cancelledCancelled by the user (or admin)
ended_insufficient_balanceEnded automatically — balance couldn’t cover the next day

Example

curl "https://api.tronrental.com/v1/bandwidth/rentals?status=active" \
  -H "X-API-Key: your_api_key"
Response
{
  "rentals": [
    {
      "id": 4321,
      "address": "TYourRecipientAddress1234567890abc",
      "volume": 350,
      "status": "active",
      "daily_trx": "0.4205",
      "total_charged_trx": "1.2615",
      "billing_count": 3,
      "next_billing_at": "2026-06-11T04:30:00+00:00",
      "last_billed_at": "2026-06-10T04:30:00+00:00",
      "delegate_txid": "abc123...",
      "undelegate_txid": null,
      "ended_at": null,
      "created_at": "2026-06-08T04:30:00+00:00"
    }
  ]
}