get_network_request
Retrieve detailed network request information by ID or URL for debugging web applications. Provides request headers, response data, and timing metrics to analyze HTTP traffic during browser automation.
Instructions
Get detailed information about a network request by id (recommended). URL lookup is available as a fallback but may match multiple requests.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format: text (default) or json (structured data) | |
id | No | The request ID from list_network_requests (recommended) | |
url | No | The URL of the request (fallback, may match multiple requests) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Output format: text (default) or json (structured data)",
"enum": [
"text",
"json"
],
"type": "string"
},
"id": {
"description": "The request ID from list_network_requests (recommended)",
"type": "string"
},
"url": {
"description": "The URL of the request (fallback, may match multiple requests)",
"type": "string"
}
},
"type": "object"
}