AI Agent Web Fetcher
Pricing
Pay per event
AI Agent Web Fetcher
An advanced web fetcher that can fetch almost all websites and convert them to LLM-friendly Markdown format. Perfect for AI agents, RAG systems, and integration with search actors.
Pricing
Pay per event
Rating
0.0
(0)
Developer

AbotAPI
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
16 minutes ago
Last modified
Categories
Share
An advanced web fetcher that can fetch almost all websites and convert them to LLM-friendly Markdown format. Perfect for AI agents, RAG systems, and integration with search actors.
Features
- 🌍 Universal Fetching: Capable of fetching content from almost any website
- 🛡️ Advanced Anti-Blocking: Automatically handles complex challenges and protections
- 📝 Markdown Output: Clean, LLM-friendly format
- 🔗 Integration Ready: Seamlessly integrates with AI Web Search Tool and other search actors
- 🎯 Dual Mode: Single URL or batch processing from datasets
Usage
Single URL Mode
{"url": "https://example.com"}
Integration Mode (with AI Web Search Tool)
When triggered by the AI Web Search Tool, the actor automatically:
- Receives the search results dataset
- Extracts URLs from the
linkfield - Fetches and converts each page to Markdown
No configuration needed - the integration is automatic!
You can also manually specify a dataset:
{"datasetId": "abc123","urlField": "link","maxUrls": 10}
Input Parameters
| Parameter | Type | Description | Default |
|---|---|---|---|
url | string | Single URL to fetch | - |
datasetId | string | Dataset ID containing URLs (integration mode) | - |
urlField | string | Field name containing URLs in dataset | link |
maxUrls | integer | Max URLs to fetch from dataset (1-100) | 10 |
proxy | object | Proxy configuration | - |
waitUntil | string | Navigation wait condition | domcontentloaded |
debug | boolean | Save HTML content in output | false |
Output Format
Each fetched URL produces:
{"url": "https://example.com","markdown": "# Page Title\n\nContent...","metadata": {"title": "Page Title","description": "Page description","author": "Author name"}}
Integration with AI Web Search Tool
- Run the AI Web Search Tool
- Add this actor as an integration
- The actor automatically fetches and converts all search results to Markdown
Perfect for building AI agents that need to:
- Research topics with real-time web data
- Extract content from search results
- Build RAG systems with fresh web content