跳转到主要内容
GET
/
node
/
devices
curl --request GET \
  --url 'https://zeus-api.agentspro.cn/node/devices?user_id=user_123&online_only=true' \
{
  "nodes": [
    {
      "node_id": "node_abc",
      "node_type": "extension",
      "node_name": "Chrome Extension",
      "status": "online",
      "os": "macOS",
      "os_version": "14.0",
      "app_version": "1.2.0",
      "capabilities": ["browser_control", "screenshot"],
      "available_tools": ["click", "type", "screenshot", "navigate"],
      "current_tasks": 0,
      "max_concurrent_tasks": 3,
      "is_connected": true
    }
  ],
  "total": 1
}
user_id
string
必填
用户 ID
node_type
string
节点类型过滤:extension | desktop
online_only
boolean
默认值:"false"
仅返回在线节点
nodes
array
节点列表
total
number
节点总数
curl --request GET \
  --url 'https://zeus-api.agentspro.cn/node/devices?user_id=user_123&online_only=true' \
{
  "nodes": [
    {
      "node_id": "node_abc",
      "node_type": "extension",
      "node_name": "Chrome Extension",
      "status": "online",
      "os": "macOS",
      "os_version": "14.0",
      "app_version": "1.2.0",
      "capabilities": ["browser_control", "screenshot"],
      "available_tools": ["click", "type", "screenshot", "navigate"],
      "current_tasks": 0,
      "max_concurrent_tasks": 3,
      "is_connected": true
    }
  ],
  "total": 1
}