AI Web Scraper - Powered by Crawl4AI avatar
AI Web Scraper - Powered by Crawl4AI

Pricing

$8.00 / 1,000 results

Go to Store
AI Web Scraper - Powered by Crawl4AI

AI Web Scraper - Powered by Crawl4AI

Developed by

Raizen Technology

Raizen Technology

Maintained by Community

A blazing-fast AI web scraper powered by Crawl4AI. Perfect for LLMs, AI agents, AI automation, model training, sentiment analysis, and content generation. Supports deep crawling, multiple extraction strategies and flexible output (Markdown/JSON). Seamlessly integrates with Make.com, n8n, and Zapier.

1.0 (1)

Pricing

$8.00 / 1,000 results

5

Total users

71

Monthly users

47

Runs succeeded

>99%

Issue response

13 days

Last modified

19 days ago

You can access the AI Web Scraper - Powered by Crawl4AI programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

$# Start Server-Sent Events (SSE) session and keep it running
<curl "https://actors-mcp-server.apify.actor/sse?token=<YOUR_API_TOKEN>&actors=raizen/ai-web-scraper"
# Session id example output:
# event: endpoint
# data: /message?sessionId=9d820491-38d4-4c7d-bb6a-3b7dc542f1fa

Using AI Web Scraper - Crawl4AI for LLMs, AI Agents & Automation via Model Context Protocol (MCP) server

MCP server lets you use AI Web Scraper - Crawl4AI for LLMs, AI Agents & Automation within your AI workflows. Send API requests to trigger actions and receive real-time results. Take the received sessionId and use it to communicate with the MCP server. The message starts the AI Web Scraper - Crawl4AI for LLMs, AI Agents & Automation Actor with the provided input.

$curl -X POST "https://actors-mcp-server.apify.actor/message?token=<YOUR_API_TOKEN>&session_id=<SESSION_ID>" -H "Content-Type: application/json" -d '{
$ "jsonrpc": "2.0",
$ "id": 1,
$ "method": "tools/call",
$ "params": {
$ "arguments": {
$ "startUrls": [
$ {
$ "url": "https://www.cnbc.com/2025/03/12/googles-deepmind-says-it-will-use-ai-models-to-power-physical-robots.html"
$ }
$ ],
$ "browserConfig": {
$ "browser_type": "chromium",
$ "headless": true,
$ "verbose_logging": false,
$ "ignore_https_errors": true,
$ "user_agent": "random",
$ "proxy": "",
$ "viewport_width": 1280,
$ "viewport_height": 720,
$ "accept_downloads": false,
$ "extra_headers": {}
$ },
$ "crawlerConfig": {
$ "cache_mode": "BYPASS",
$ "page_timeout": 20000,
$ "simulate_user": true,
$ "override_navigator": true,
$ "magic": true,
$ "remove_overlay_elements": true,
$ "delay_before_return_html": 0.75,
$ "wait_for": "",
$ "screenshot": false,
$ "pdf": false,
$ "enable_rate_limiting": false,
$ "memory_threshold_percent": 90,
$ "word_count_threshold": 200,
$ "css_selector": "",
$ "excluded_tags": [],
$ "excluded_selector": "",
$ "only_text": false,
$ "prettify": false,
$ "keep_data_attributes": false,
$ "remove_forms": false,
$ "bypass_cache": false,
$ "disable_cache": false,
$ "no_cache_read": false,
$ "no_cache_write": false,
$ "wait_until": "domcontentloaded",
$ "wait_for_images": false,
$ "check_robots_txt": false,
$ "mean_delay": 0.1,
$ "max_range": 0.3,
$ "js_code": "",
$ "js_only": false,
$ "ignore_body_visibility": true,
$ "scan_full_page": false,
$ "scroll_delay": 0.2,
$ "process_iframes": false,
$ "adjust_viewport_to_content": false,
$ "screenshot_wait_for": 0,
$ "screenshot_height_threshold": 20000,
$ "image_description_min_word_threshold": 50,
$ "image_score_threshold": 3,
$ "exclude_external_images": false,
$ "exclude_social_media_domains": [],
$ "exclude_external_links": false,
$ "exclude_social_media_links": false,
$ "exclude_domains": [],
$ "verbose": true,
$ "log_console": false,
$ "stream": false
$ },
$ "deepCrawlConfig": {
$ "max_pages": 100,
$ "max_depth": 3,
$ "include_external": false,
$ "score_threshold": 0.5,
$ "filter_chain": [],
$ "keywords": [
$ "crawl",
$ "example",
$ "async",
$ "configuration"
$ ],
$ "weight": 0.7
$ },
$ "markdownConfig": {
$ "ignore_links": false,
$ "ignore_images": false,
$ "escape_html": true,
$ "skip_internal_links": false,
$ "include_sup_sub": false,
$ "citations": false,
$ "body_width": 80,
$ "fit_markdown": false
$ },
$ "contentFilterConfig": {
$ "type": "pruning",
$ "user_query": "",
$ "threshold": 0.45,
$ "min_word_threshold": 5,
$ "bm25_threshold": 1.2,
$ "apply_llm_filter": false,
$ "semantic_filter": "",
$ "word_count_threshold": 10,
$ "sim_threshold": 0.3,
$ "max_dist": 0.2,
$ "top_k": 3,
$ "linkage_method": "ward"
$ },
$ "userAgentConfig": {
$ "user_agent_mode": "random",
$ "device_type": "desktop",
$ "browser_type": "chrome",
$ "num_browsers": 1
$ },
$ "llmConfig": {
$ "provider": "groq/deepseek-r1-distill-llama-70b",
$ "api_token": "",
$ "instruction": "Summarize content in clean markdown.",
$ "base_url": "",
$ "chunk_token_threshold": 2048,
$ "apply_chunking": true,
$ "input_format": "markdown",
$ "temperature": 0.7,
$ "max_tokens": 4096
$ },
$ "extractionSchema": {
$ "name": "Custom Extraction",
$ "baseSelector": "div.article",
$ "fields": [
$ {
$ "name": "title",
$ "selector": "h1",
$ "type": "text"
$ },
$ {
$ "name": "link",
$ "selector": "a",
$ "type": "attribute",
$ "attribute": "href"
$ }
$ ]
$ }
$},
$ "name": "raizen/ai-web-scraper"
$ }
$}'

The response should be: Accepted. You should received response via SSE (JSON) as:

$event: message
$data: {
$ "result": {
$ "content": [
$ {
$ "type": "text",
$ "text": "ACTOR_RESPONSE"
$ }
$ ]
$ }
$}

Configure local MCP Server via standard input/output for AI Web Scraper - Crawl4AI for LLMs, AI Agents & Automation

You can connect to the MCP Server using clients like ClaudeDesktop and LibreChat or build your own. The server can run both locally and remotely, giving you full flexibility. Set up the server in the client configuration as follows:

{
"mcpServers": {
"actors-mcp-server": {
"command": "npx",
"args": [
"-y",
"@apify/actors-mcp-server",
"--actors",
"raizen/ai-web-scraper"
],
"env": {
"APIFY_TOKEN": "<YOUR_API_TOKEN>"
}
}
}
}

You can further access the MCP client through the Tester MCP Client, a chat user interface to interact with the server.

To get started, check out the documentation and example clients. If you are interested in learning more about our MCP server, check out our blog post.