AI Agent Web Fetcher avatar
AI Agent Web Fetcher

Pricing

Pay per event

Go to Apify Store
AI Agent Web Fetcher

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

AbotAPI

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

16 minutes ago

Last modified

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:

  1. Receives the search results dataset
  2. Extracts URLs from the link field
  3. 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

ParameterTypeDescriptionDefault
urlstringSingle URL to fetch-
datasetIdstringDataset ID containing URLs (integration mode)-
urlFieldstringField name containing URLs in datasetlink
maxUrlsintegerMax URLs to fetch from dataset (1-100)10
proxyobjectProxy configuration-
waitUntilstringNavigation wait conditiondomcontentloaded
debugbooleanSave HTML content in outputfalse

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

  1. Run the AI Web Search Tool
  2. Add this actor as an integration
  3. 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