跳转到主要内容
GET
/
node
/
devices
/
{node_id}
curl --request GET \
  --url 'https://zeus-api.agentspro.cn/node/devices/node_abc?user_id=user_123'
{
  "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
}
node_id
string
必填
节点 ID
user_id
string
必填
用户 ID
node_id
string
节点唯一标识
node_type
string
节点类型
node_name
string
节点名称
status
string
状态
os
string
操作系统
os_version
string
系统版本
app_version
string
应用版本
capabilities
array
能力列表
available_tools
array
可用工具列表
current_tasks
number
当前任务数
max_concurrent_tasks
number
最大并发任务数
is_connected
boolean
WebSocket 连接状态
curl --request GET \
  --url 'https://zeus-api.agentspro.cn/node/devices/node_abc?user_id=user_123'
{
  "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
}