extract_structured_data
Scrape a URL then use AI to extract structured JSON data matching your schema description. Combines Playwright scraping with Grok LLM extraction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to scrape | |
| schema_description | Yes | Description of the data to extract and desired JSON structure. Example: 'Extract all product names and prices as {products: [{name, price}]}' |