network_get
Retrieve captured network events from browser activity. Filter by URL and optionally fetch response bodies.
Instructions
Retrieve captured network events.
Args:
limit: max entries returned (chronological: oldest first within the last `limit`, newest last)
filter_url: substring filter on URL
include_body: fetch response bodies via CDP Network.getResponseBody
for each matching entry. Bodies are truncated to max_body_bytes.
Requires network_start(capture_bodies=True) (default).
max_body_bytes: cap per-body length (default 10000)
full: if True, return entries with full headers + body fields
from network_index (use this once you've called network_start).
Default False = legacy flat event stream (backward compat).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| filter_url | No | ||
| include_body | No | ||
| max_body_bytes | No | ||
| full | No |
Output Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |