read_crawl_data
Read CSV export data from a previous crawl. Retrieve rows with pagination, offset, and optional filtering by column value using contains, exact, or regex modes.
Instructions
Read CSV data from an export. Use after export_crawl.
Args: export_id: The export_id from export_crawl file: CSV filename to read (from the file list in export_crawl output) limit: Max rows to return (default 100, max 1000) offset: Number of rows to skip (for pagination) filter_column: Optional column name to filter by filter_value: Optional value to match in the filter column filter_mode: How to match filter_value: "contains" (default, case-insensitive substring), "exact" (case-insensitive exact match), or "regex" (Python regex)
Returns: CSV data as formatted text with column headers.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| export_id | Yes | ||
| file | Yes | ||
| limit | No | ||
| offset | No | ||
| filter_column | No | ||
| filter_value | No | ||
| filter_mode | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |