extract_content
Extract content from a web page. Returns structured data based on the extraction type. Supports: markdown (readable content), text (plain text), html (raw HTML), article (structured with title/author/excerpt), links (all page links), metadata (OG tags, title, description).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | URL to extract content from (must start with http:// or https://) | |
| type | No | Extraction type (default: markdown) | |
| delay | No | Milliseconds to wait after page load (default: 0) | |
| selector | No | CSS selector to scope extraction to a specific element | |
| block_ads | No | Block advertisements and trackers (default: true) | |
| max_length | No | Maximum content length in characters (default: 100000) | |
| block_cookie_banners | No | Remove cookie consent banners (default: true) |