webscrape.scrape
Extract a webpage's title, headings, links, images, and text content via static HTML fetch. Provide the URL to get structured page data without JavaScript rendering.
Instructions
Scrape a webpage and extract its structure: title, headings, links, images, and text content. Uses static HTML fetch (does not render JavaScript).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The URL to scrape |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| links | No | ||
| title | No | ||
| headings | No | ||
| text_content | No |