browser_ws_messages
Retrieve all WebSocket connections and their messages from a browser session. Filter by URL substring to inspect real-time data from trading dashboards, chat, or live feeds.
Instructions
Return all WebSocket connections opened this session and their messages.
Each entry: {url, closed, messages: [{dir: 'sent'|'received', data: str}]}.
url_contains: filter to connections whose URL includes this substring.
Useful for real-time apps (trading dashboards, chat, live data feeds) that
deliver state over WebSocket rather than HTTP.Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | No | ||
| url_contains | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |