network_get_requests
List HTTP requests captured since browser attach, showing method, status, duration, size, and initiator. Filter by URL, method, status, or failures only; optionally include response bodies.
Instructions
List HTTP requests captured since attach, with method, status, duration, size and initiator. Filter by URL substring, method, status or failures only. Response bodies are opt-in via include_bodies because they are large. Capture starts when DevCDP attaches, so requests from before that are not here — reload to see them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum requests to return. | |
| method | No | Only this HTTP method, e.g. POST. | |
| offset | No | Skip this many of the newest matches, for paging back in time. | |
| status | No | Only this exact response status. | |
| min_status | No | Only responses with status >= this, e.g. 400 for problems. | |
| url_filter | No | Only requests whose URL contains this substring. | |
| failed_only | No | Only network failures and 4xx/5xx responses. | |
| include_bodies | No | Include response bodies, subject to max_body_bytes. | |
| max_body_bytes | No | Per-body byte cap when include_bodies is set. | |
| include_headers | No | Include request and response headers. | |
| include_post_data | No | Include request payloads. |