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

> List your active Smart Mode subscriptions

## List Subscriptions

Returns all active and paused Smart Mode subscriptions. Deactivated subscriptions are not included.

### Response

Array of subscription objects:

<ResponseField name="id" type="number">
  Subscription ID
</ResponseField>

<ResponseField name="address" type="string">
  Monitored TRON address
</ResponseField>

<ResponseField name="label" type="string">
  Optional label
</ResponseField>

<ResponseField name="status" type="string">
  `active` or `paused`
</ResponseField>

<ResponseField name="bw_guarantee" type="boolean">
  Whether BW Guarantee is enabled
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 timestamp
</ResponseField>

### Example

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

```json Response theme={null}
[
  {
    "id": 42,
    "address": "TYourAddress...",
    "label": "Main wallet",
    "status": "active",
    "bw_guarantee": true,
    "created_at": "2026-03-05T12:00:00Z"
  },
  {
    "id": 43,
    "address": "TAnotherAddress...",
    "label": null,
    "status": "paused",
    "bw_guarantee": false,
    "created_at": "2026-03-04T10:00:00Z"
  }
]
```
