read_saved_results
Retrieve a paginated subset of saved scraper results by specifying offset, limit, fields, and a substring query to reduce token consumption.
Instructions
Read a paginated slice of items from a previously saved scraper results file.
Results files can be very large. Read in small pages and project only the fields you need to stay within context limits.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of items to return per call. | |
| query | No | Case-insensitive substring filter. Only items whose JSON contains this string are returned. | |
| fields | No | If set, only these top-level keys are included per item. Use to reduce token usage. | |
| offset | No | Index of the first item to return. Use with limit to paginate. | |
| file_path | Yes | Path returned by a search tool or list_saved_results. A bare filename also works. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| meta | Yes | ||
| items | Yes | ||
| offset | Yes | ||
| returned | Yes | ||
| total_items | Yes | ||
| matched_items | Yes |