> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeus.agentspro.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# Call Browser Tool

> Invoke a browser extension tool via WebSocket JSON-RPC

Sends a JSON-RPC tool call request to the browser extension over WebSocket and waits for the execution result. Timeout is 60 seconds.

<ParamField query="user_id" type="string" required>
  User ID
</ParamField>

<ParamField body="tool_name" type="string" required>
  Tool name (e.g. `click`, `type`, `screenshot`, `navigate`)
</ParamField>

<ParamField body="tool_args" type="object" default="{}">
  Tool arguments
</ParamField>

<ParamField body="session_id" type="string">
  Session ID (optional, used to route to the bound node)
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  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"
    }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "result": {
      "screenshot_url": "data:image/png;base64,..."
    }
  }
  ```

  ```json 503 theme={null}
  {
    "detail": "Browser extension not connected"
  }
  ```
</ResponseExample>
