read_crawl_data
Read crawl data from exported CSV files. Filter rows, paginate, and select specific columns to analyze website crawl results.
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) columns: Optional comma-separated column names to return. Wide exports (Internal:All has dozens of columns) flood the context; request just the ones you need, e.g. "Address,Status Code".
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 | ||
| columns | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |