Decodo Scrape
decodo_scrapeScrape any web page through Decodo (formerly Smartproxy) rotating proxies and return its content. Handles anti-bot pages; use render_js:true for JavaScript-heavy sites (headless-browser rendering) and markdown:true for clean LLM-ready markdown instead of raw HTML. BYOK — _apiKey is your Decodo Web Scraping API "username:password" credentials. Example: decodo_scrape({ url: "https://example.com", render_js: true, _apiKey: "user:pass" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| geo | No | Proxy exit location as a location name, e.g. "United States", "Germany", "Japan". Default: randomized. | |
| url | Yes | The absolute URL of the page to scrape, e.g. "https://example.com/products" | |
| _apiKey | Yes | Decodo Web Scraping API credentials as "username:password" (from the dashboard at https://dashboard.decodo.com — free plan available). | |
| markdown | No | Return the page as clean markdown instead of raw HTML (ideal for feeding an LLM). Default false. | |
| render_js | No | Render the page in a headless browser (executes JavaScript) before returning content. Default false (faster raw fetch of static pages). |