Web scrape
Routed across Jina Reader, Spider, and Firecrawl. The killer feature: when one provider is blocked by a site, the same URL automatically retries through the next provider.
Request
Section titled “Request”POST /v1/tools/scrape{ "url": "https://example.com/article", "format": "markdown", "render_js": false, "routing": { "sort": "price" }}| Field | Type | Notes |
|---|---|---|
url | string | required, must be a valid URL |
format | enum | markdown (default) | html | text |
render_js | bool | Render JavaScript first (excludes non-rendering providers) |
Result
Section titled “Result”{ "result": { "url": "https://example.com/article", "format": "markdown", "title": "…", "content": "# Article\n…" }}