extract_tables
Fetch a webpage and parse all HTML tables into structured headers and rows, with control over how many tables to return.
Instructions
Fetch a page and extract every HTML as {headers, rows}.
max_tables: cap on how many tables to return (1-100). Each table is
{"headers": [...], "rows": [[cell, ...], ...], "n_rows": int, "n_cols": int}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | ||
| max_tables | No | ||
| obey_robots | No |