This repository provides an n8n community node for Evomi's Scraper API, a powerful web scraping tool with intelligent mode detection, automatic CAPTCHA solving, and residential proxy support.
n8n is a fair-code licensed workflow automation platform that lets you connect apps, APIs, and services to build automated workflows.
- Intelligent Auto Mode: Automatically detects whether to use fast HTTP requests or full browser rendering
- Three Scraping Modes: Choose between
auto,request, orbrowsermodes - Multiple Output Formats: Get results as JSON, Markdown, or Screenshot
- AI Tool Compatible: Use as an AI agent tool for intelligent web scraping
- Automatic CAPTCHA Solving: Built-in CAPTCHA handling with browser mode
- Geo-Targeting: Route requests through proxies in 195+ countries
- Robust Error Handling: Comprehensive validation with helpful error messages
To use this node, you need:
- An Evomi account - Sign up at evomi.com
- Active Scraper API subscription or Pay-As-You-Go credits - Required to make API requests
π Free Trial Available! New users can get started with a free trial at my.evomi.com/scraper-api.
- Open your n8n instance
- Go to Settings β Community Nodes
- Select Install
- Enter
n8n-nodes-evomiand confirm
npm install n8n-nodes-evomi- Log in to your Evomi Dashboard
- Navigate to Products β Scraper API β Playground
- Your API key is displayed in the top-right section of the dashboard
Copy the API key from the highlighted field (click the copy icon next to it).
- In your n8n workflow editor, click the + button to add a new node
- Search for "Evomi" in the node selector
- Click on the Evomi node to add it to your workflow
- In the Evomi node panel, click on "Select Credential" β "+ Create new credential"
- Enter your API key from the Evomi dashboard and click Save
- You should see "Connection tested successfully" - your credentials are now saved!
- Enter the URL you want to scrape
- Choose your preferred mode and output format
- Click Execute step to run the scraper!
The web page URL to scrape. Must include http:// or https://.
https://example.com
https://news.ycombinator.com
Choose how the page should be fetched:
| Mode | Description | Best For | JavaScript |
|---|---|---|---|
| Auto (Default) | Automatically detects the best approach. Tries HTTP first, upgrades to browser if needed. | Most use cases | Auto-detected |
| Request | Fast HTTP request without browser rendering. | Static sites, blogs, news, APIs | No |
| Browser | Full browser with JavaScript execution. | SPAs, React/Vue/Angular apps, dynamic content | Yes |
Choose the format for the scraped content:
| Output | Description | Use Case |
|---|---|---|
| JSON (Default) | Structured JSON with metadata. Toggle "Include Content" to get the full HTML. | When you need metadata (title, status, etc.) |
| Markdown | Clean, readable text format. | AI processing, content analysis, LLM input |
| Screenshot | Full-page PNG image. Automatically enables Browser mode. | Visual verification, archiving, thumbnails |
When using JSON output, toggle this to include the full HTML content in the response. Disable to save bandwidth when you only need metadata.
- Default: Off
- When enabled: Response includes
contentfield with full HTML
Seconds to wait after page load before capturing content. Useful for pages that load content dynamically via JavaScript.
- Default: 5 seconds
- Range: 0-30 seconds
- Tip: Increase for slow-loading pages, decrease for fast static sites
Route your request through a proxy in a specific country using ISO 3166-1 alpha-2 codes.
- Default: US
- Examples:
US,CA,DE,GB,JP,AU,FR,BR
Common Country Codes:
| Code | Country |
|---|---|
| US | United States |
| CA | Canada |
| GB | United Kingdom |
| DE | Germany |
| FR | France |
| JP | Japan |
| AU | Australia |
| BR | Brazil |
Basic scraping:
- Set URL:
https://example.com - Mode:
Auto - Output:
JSON - Execute
Get markdown for AI processing:
- Set URL:
https://blog.example.com/article - Mode:
Auto - Output:
Markdown - Execute β Feed result to AI node
Take a screenshot:
- Set URL:
https://dashboard.example.com - Mode:
Browser(auto-selected) - Output:
Screenshot - Execute
Geo-targeted scraping:
- Set URL:
https://amazon.de - Proxy Country:
DE - Execute β Get German localized content
Connect the Evomi node to an AI Agent node as a tool. The AI can scrape websites based on natural language prompts.
Example Prompts:
- "Scrape https://news.ycombinator.com and summarize the top 5 stories"
- "Get the content from https://example.com/pricing and extract the pricing tiers"
- "Take a screenshot of https://competitor.com/landing-page"
{
"success": true,
"url": "https://example.com",
"domain": "example.com",
"title": "Example Domain",
"status_code": 200,
"credits_used": 2.0,
"credits_remaining": 98.0,
"mode_used": "auto (request)",
"content": "<html>...</html>"
}Returns clean, formatted text:
# Example Domain
This domain is for use in illustrative examples in documents...Returns binary PNG image data that can be:
- Saved to file
- Uploaded to cloud storage
- Processed by image nodes
The node provides comprehensive error handling with helpful messages:
| Error | Cause | Solution |
|---|---|---|
| "URL is required" | Empty URL field | Enter a valid URL |
| "Invalid URL format" | Missing http:// or https:// | Add protocol to URL |
| "Invalid proxy country code" | Not a 2-letter code | Use ISO 3166-1 alpha-2 (e.g., US, DE) |
| Error | Cause | Solution |
|---|---|---|
| "Invalid API key" | Wrong or expired key | Check credentials in n8n |
| "Insufficient credits" | Account out of credits | Add credits or start a free trial |
| "Rate limit exceeded" | Too many requests | Wait and retry, or upgrade plan |
| "Failed to connect" | Network issue | Check internet connection |
Enable "Continue on Fail" in node settings to handle errors gracefully. Failed items will return:
{
"success": false,
"error": "Error message here",
"itemIndex": 0
}| Mode | Output | Approximate Cost |
|---|---|---|
| Request | JSON/Markdown | 1-2 credits |
| Auto (request used) | JSON/Markdown | 2 credits |
| Auto (browser used) | JSON/Markdown | 6 credits |
| Browser | JSON/Markdown | 5 credits |
| Browser | Screenshot | 6 credits |
Check your credit balance at my.evomi.com.
π‘ Tip: Start with a free trial to test the API before committing to a subscription.
# Clone the repository
git clone https://github.com/evomi/n8n-nodes-evomi.git
cd n8n-nodes-evomi
# Install dependencies
npm install
# Build the project
npm run build# 1. Build the node
npm run build
# 2. Link the package
npm link
# 3. Create n8n custom folder and link
mkdir -p ~/.n8n/custom
cd ~/.n8n/custom
npm init -y
npm link n8n-nodes-evomi
# 4. Start n8n
n8n startnpm run lint
npm run lint:fix- Node.js: >=20.15
- n8n: Latest version recommended
- n8n Nodes API Version: 1
- Evomi Scraper API Documentation
- Evomi Dashboard & API Playground
- Start Free Trial
- n8n Community Nodes Documentation
| Issue Type | Where to Get Help |
|---|---|
| This node | GitHub Issues |
| Evomi API | support@evomi.com |
| n8n | n8n Community Forum |






