List Network Calls
list_network_callsInspect HTTP requests and responses from a web page. Filter by type, method, status, or URL to find API calls or errors.
Instructions
List HTTP requests and responses made by the page. Filter by resource type, method, status code, or URL pattern; supports pagination. Use after navigate or an action to inspect API traffic, confirm a request fired, or find failing calls (e.g. status_min=400). Returns request/response summaries as XML.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results to return (default: 25, max: 100). | |
| method | No | Filter by HTTP method: GET, POST, PUT, DELETE, PATCH, etc. | |
| offset | No | Pagination offset (default: 0). | |
| page_id | No | Page ID. If omitted, operates on the most recently used page. | |
| status_max | No | Maximum HTTP status code (inclusive). Use with status_min for ranges like 200-299. | |
| status_min | No | Minimum HTTP status code (inclusive). Use 400 to see only errors. | |
| failed_only | No | When true, only show requests that failed due to network errors. | |
| url_pattern | No | Filter URLs containing this substring. | |
| resource_type | No | Filter by resource type: xhr, fetch, document, script, stylesheet, image, font, media, other. |