Skip to main content
POST
/
node
/
browser
/
tool
curl --request POST \
  --url 'https://zeus-api.agentspro.cn/node/browser/tool?user_id=user_123' \
  --header 'Content-Type: application/json' \
  --data '{
    "tool_name": "screenshot",
    "tool_args": { "full_page": true },
    "session_id": "sess_456"
  }'
{
  "success": true,
  "result": {
    "screenshot_url": "data:image/png;base64,..."
  }
}
Sends a JSON-RPC tool call request to the browser extension over WebSocket and waits for the execution result. Timeout is 60 seconds.
user_id
string
required
User ID
tool_name
string
required
Tool name (e.g. click, type, screenshot, navigate)
tool_args
object
default:"{}"
Tool arguments
session_id
string
Session ID (optional, used to route to the bound node)
curl --request POST \
  --url 'https://zeus-api.agentspro.cn/node/browser/tool?user_id=user_123' \
  --header 'Content-Type: application/json' \
  --data '{
    "tool_name": "screenshot",
    "tool_args": { "full_page": true },
    "session_id": "sess_456"
  }'
{
  "success": true,
  "result": {
    "screenshot_url": "data:image/png;base64,..."
  }
}