extract
Convert any public web page into token-efficient Markdown for RAG and AI agents. Optionally render JavaScript for single-page apps.
Instructions
Fetch any public web page and return its main content as clean, token-efficient Markdown (title, description, headings, links, lists). Set render:true to execute JavaScript first for single-page apps or JS-heavy pages that would otherwise come back empty. Built for RAG and for agents that need to read the contents of a URL.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Full http/https URL of the page to extract. | |
| render | No | Render JavaScript with a headless browser before extracting (default false). Enable for SPAs / JS-heavy pages that return empty content otherwise. Slower. | |
| max_chars | No | Truncate the markdown to at most this many characters (sets truncated:true). | |
| include_links | No | Keep hyperlinks in the markdown output (default true). | |
| include_images | No | Keep images as markdown (default false). |