fetch
Retrieve stored HTTP request/response pairs by ID, name, or shortcut, with support for regex search in response bodies and pagination.
Instructions
Retrieve a stored request/response by ID or name
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Request UUID or shortcut: last (most recent) prev (second most recent) prev:N (Nth from latest) | |
| grep | No | Regex to search in response body | |
| name | No | Saved name to fetch | |
| part | No | What to return: meta request response both (default both) | |
| limit | No | Max body bytes to return (default 102400) | |
| offset | No | Body byte offset for pagination | |
| max_match_bytes | No | Bound grep output to ~N bytes per match (a window around each match) and omit the full body. For grepping large single-line/minified assets. 0 = default per-line grep. |