search_json_path
Extract specific values from JSON response bodies using dot-notation paths to locate data elements during web debugging and reverse engineering tasks.
Instructions
Extract a value from a captured JSON response body by dot-notation path.
Supports array indexing like "data.items[0].name" or "data.list[*].id" (wildcard returns all matching values).
Args: request_id: The request ID. json_path: Dot-notation path, e.g. "data.token", "result[0].sign", "data[*].id" (wildcard collects all).
Returns: dict with the extracted value(s) and the path used.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request_id | Yes | ||
| json_path | Yes |