> ## 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.

# List Packages

> List your transfer packages

## List My Packages

Returns all your transfer packages.

### Response

Array of package objects with `id`, `address`, `total_transfers`, `remaining_transfers`, `status`, and `created_at`.

### Package statuses

| Status            | Description                             |
| ----------------- | --------------------------------------- |
| `pending_payment` | Awaiting invoice payment                |
| `active`          | Monitoring address, transfers available |
| `completed`       | All transfers used                      |
| `cancelled`       | Cancelled by user                       |

### Example

```bash theme={null}
curl https://api.tronrental.com/v1/transfer-packages/my \
  -H "X-API-Key: your_api_key"
```

```json Response theme={null}
[
  {
    "id": 101,
    "address": "TYourAddress...",
    "total_transfers": 500,
    "remaining_transfers": 312,
    "bw_guarantee": true,
    "status": "active",
    "created_at": "2026-03-01T10:00:00Z"
  }
]
```
