ie_grid
Extract structured data from a webpage grid in IE mode. Returns rows as dictionaries with column headers, using automatic table detection or a specified table ID.
Instructions
Extract a tabular grid as structured rows. Auto-picks the table with the most multi-cell rows (or pass table_id). Returns headers + rows (header-keyed dicts when the header row is detected/given). App-agnostic.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| frame | No | frame/path holding the grid (e.g. '3/0') | |
| limit | No | max rows (default 500) | |
| headers | No | explicit column names (optional) | |
| table_id | No | specific table element id (optional) | |
| out_limit | No | max output chars (default 12000) |