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 API
获取节点详情
获取单个节点详情
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
}
string
必填
节点 ID
string
必填
用户 ID
string
节点唯一标识
string
节点类型
string
节点名称
string
状态
string
操作系统
string
系统版本
string
应用版本
array
能力列表
array
可用工具列表
number
当前任务数
number
最大并发任务数
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
}
⌘I