get_proxy_history
Retrieve captured HTTP/HTTPS traffic from Burp Proxy, filter by host, method, or status code, and limit results for targeted analysis.
Instructions
Get HTTP/HTTPS traffic captured by Burp Proxy
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | No | Filter by host (optional) | |
limit | No | Maximum number of items to return (default: 10) | |
method | No | Filter by HTTP method (optional) | |
status_code | No | Filter by HTTP status code (optional) |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"description": "Filter by host (optional)",
"type": "string"
},
"limit": {
"description": "Maximum number of items to return (default: 10)",
"type": "number"
},
"method": {
"description": "Filter by HTTP method (optional)",
"type": "string"
},
"status_code": {
"description": "Filter by HTTP status code (optional)",
"type": "number"
}
},
"type": "object"
}