Scrape a web page to Markdown
scrapeFetch a URL and return its content as clean, LLM-ready Markdown. Automatically renders JavaScript and bypasses bot detection for any single page.
Instructions
Fetch a single URL and return its content as clean, LLM-ready Markdown. Renders JavaScript sites and gets past bot detection automatically: tries a fast HTTP fetch, then escalates to a real stealth browser through residential proxies when a page is an empty JS app or is blocked (Cloudflare, DataDome, 403/429). Use for docs, articles, product pages, SPAs, or any single page.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Absolute http(s) URL to fetch. | |
| render | No | How to fetch. 'auto' (default): HTTP first, escalate to a real browser if needed. 'http': fast, HTTP only. 'browser': force full JS rendering + stealth fingerprint. | |
| onlyMainContent | No | Extract just the main article/content, stripping nav/ads/footer. Default true. |