Search Network Calls
search_network_callsSearch network calls by URL pattern to find specific API requests. Filter by method, status code, and include headers or body details.
Instructions
Search network calls by URL pattern (substring or regex). Use when you know part of the endpoint URL and want just those calls, optionally with headers and request body; use list_network_calls to browse all traffic. Returns matching requests as XML with optional headers and body details.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results to return (default: 25, max: 100). | |
| method | No | Filter by HTTP method. | |
| page_id | No | Page ID. If omitted, operates on the most recently used page. | |
| url_regex | No | When true, url_pattern is treated as a regular expression. | |
| status_max | No | Maximum HTTP status code (inclusive). | |
| status_min | No | Minimum HTTP status code (inclusive). | |
| url_pattern | Yes | URL pattern to search for. Substring match by default; set url_regex=true for regex. | |
| include_body | No | When true, include POST body in results. | |
| resource_type | No | Filter by resource type. | |
| include_headers | No | When true, include request and response headers in results. |