跳转到主要内容
GET
/
api
/
v1
/
smart-mode
/
subscriptions
订阅列表
curl --request GET \
  --url https://api.example.com/api/v1/smart-mode/subscriptions
{
  "id": 123,
  "address": "<string>",
  "label": "<string>",
  "status": "<string>",
  "bw_guarantee": true,
  "created_at": "<string>"
}

订阅列表

返回所有活跃和暂停的智能模式订阅。已停用的订阅不会包含在内。

响应

订阅对象数组:
id
number
订阅 ID
address
string
被监控的 TRON 地址
label
string
可选标签
status
string
activepaused
bw_guarantee
boolean
是否启用带宽保障
created_at
string
ISO 8601 时间戳

示例

curl https://api.tronrental.com/v1/smart-mode/subscriptions \
  -H "X-API-Key: your_api_key"
Response
[
  {
    "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"
  }
]