Web Bulk Fetch
web_bulk_fetchFetch multiple URLs in parallel with anti-detection strategies. Use after web search to retrieve top results in a single request, avoiding IP blocks and user-agent detection.
Instructions
Fetch multiple URLs in parallel with anti-detection capabilities. Much faster than calling web_fetch multiple times.
Use this after web_search to fetch the top 3-4 results in a single call instead of making separate web_fetch calls.
Args:
urls (string[], required): Array of URLs to fetch (max 10). Each must include https:// or http://.
strategy (string, optional): "auto", "direct", or "jina". Applied to all URLs. Default: "auto".
Returns: Combined results for all URLs, each with page content, HTTP status, strategy used, and content size. Failed URLs are clearly marked.
Example: urls=["https://docs.python.org/3/library/asyncio.html", "https://nodejs.org/en/docs/guides/event-loop"]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| urls | Yes | Array of URLs to fetch in parallel (max 10) | |
| strategy | No | Fetch strategy applied to all URLs: 'auto' (default), 'direct', or 'jina' | auto |