get_network_log
Retrieve network requests from a session to debug API calls, including URL, method, status, and size. Filter by URL substring or clear the log after reading.
Instructions
Return the network requests captured on a session — each with URL, HTTP method, status, resource type, and size. Optionally filter by URL substring; clear=true empties the log after reading. Returns the request list. Use to see which API calls fired and their status when debugging.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clear | No | Clear the log after reading (default: false) | |
| session_id | Yes | Session ID | |
| url_filter | No | Optional plain-substring filter against the full URL incl. query string (e.g. '/api/') — not a regex or glob. |