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

# 激活

> 为 TRON 地址激活智能模式

## 激活智能模式

为指定地址启动自动能量投递。首笔每日费用将立即扣除。

### 请求体

<ParamField body="address" type="string" required>
  要监控的 TRON 地址
</ParamField>

<ParamField body="label" type="string">
  此订阅的可选标签
</ParamField>

<ParamField body="bw_guarantee" type="boolean" default="true">
  启用带宽保障（每笔转账 +0.3 TRX）
</ParamField>

### 响应

返回创建的订阅对象，包含 `id`、`address`、`status` 和费用详情。

### 示例

```bash theme={null}
curl -X POST https://api.tronrental.com/v1/smart-mode/activate \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "address": "TYourAddress...",
    "label": "Main wallet",
    "bw_guarantee": true
  }'
```

```json Response theme={null}
{
  "id": 42,
  "address": "TYourAddress...",
  "label": "Main wallet",
  "status": "active",
  "bw_guarantee": true,
  "subscription_fee_trx": "3.0",
  "transfer_fee_trx": "2.7",
  "created_at": "2026-03-05T12:00:00Z"
}
```

<Warning>
  该地址不能同时拥有活跃的转账套餐。
  智能模式和转账套餐在同一地址上互斥。
</Warning>
