Synopsis
List network requests captured during the current session with powerful filtering capabilities using Chrome DevTools filter syntax.Description
Thenetwork list command displays all HTTP requests captured during the active session. It supports DevTools-compatible filter DSL for precise query control, predefined filter presets for common use cases, and resource type filtering.
By default, shows the last 100 requests. Use --last 0 to show all requests.
Options
Output results in JSON format for programmatic consumption.
Filter requests using DevTools DSL syntax. Supports domain matching, status codes, HTTP methods, MIME types, size thresholds, and more.Examples:
status-code:>=400- Failed requestsdomain:api.*- Requests to API domains (wildcards supported)method:POST- POST requests onlylarger-than:1MB- Responses over 1MB!domain:cdn.*- Exclude CDN requests (use!for negation)
Use a predefined filter preset. Available presets:
errors- Failed requests (4xx and 5xx status codes)api- API requests (XHR and Fetch)large- Large responses (>1MB)cached- Cached responsesdocuments- HTML documents onlymedia- Images, video, and audioscripts- JavaScript filespending- In-progress requests (no response yet)
Filter by resource type. Comma-separated list of CDP resource types:
Document, XHR, Fetch, Script, Stylesheet, Image, Media, Font, OtherExample: --type XHR,FetchShow last N requests. Set to
0 to show all requests. Range: 0-10000.Stream network requests in real-time (updates every second). Shows last 50 requests. Press Ctrl+C to stop.
Show full URLs and additional details instead of truncated output.
Filter Syntax
The--filter option uses Chrome DevTools filter DSL syntax:
Status Codes
Domain Matching
HTTP Methods
MIME Types
Resource Types
Size Filters
Header Inspection
State Filters
URL Scheme
Negation
Multiple Filters
Output Format
Human-readable (default)
ID- Request identifier (use withbdg details --network <id>)STS- HTTP status code (orPNDfor pending requests)METH- HTTP methodTYP- Resource type abbreviation (DOC, CSS, JS, XHR, IMG, etc.)SIZE- Encoded response sizeURL- Request URL (truncated unless--verbose)
JSON Format
Examples
List all requests
Find failed requests
Filter API requests to specific domain
Find large images
Exclude third-party requests
Stream requests in real-time
Get JSON output for processing
Combine preset with additional filters
Find slow requests (over 1 second response time)
Exit Codes
Requests listed successfully (may return empty list)
Invalid filter syntax, unknown preset, invalid resource type, or
--last value out of range (0-10000)No active session found
Failed to connect to daemon
Tips
See Also
- network har - Export requests to HAR format
- network headers - Inspect HTTP headers
- peek - Quick overview of session data
- details - Get full details for a specific request

