Skip to content

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.

POST /v1/tools/scrape
{
"url": "https://example.com/article",
"format": "markdown",
"render_js": false,
"routing": { "sort": "price" }
}
FieldTypeNotes
urlstringrequired, must be a valid URL
formatenummarkdown (default) | html | text
render_jsboolRender JavaScript first (excludes non-rendering providers)
{
"result": {
"url": "https://example.com/article",
"format": "markdown",
"title": "",
"content": "# Article\n"
}
}