N8n Workflow Scraper
Pricing
from $0.25 / 1,000 results
N8n Workflow Scraper
Scrapes public workflow templates from n8n.io, extracting template metadata (name, description, categories, nodes, popularity) and optionally full workflow JSON ready for import. Ideal for automation research, integration planning, building searchable template libraries, and competitive analysis.
Pricing
from $0.25 / 1,000 results
Rating
0.0
(0)
Developer

Daniel Yates
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
6 days ago
Last modified
Categories
Share
BORG n8n Template Scraper
Scrape workflow templates from n8n.io. Get template metadata and optionally full workflow JSON that can be imported directly into n8n.
This Actor extracts automation workflow templates from n8n's public library, including descriptions, node configurations, and popularity metrics. Perfect for workflow research, automation planning, and competitive analysis of integration patterns.
Use Cases
- Automation Research: Discover popular automation patterns and workflow architectures
- Integration Planning: Find templates using specific integrations (OpenAI, Slack, Google Sheets, etc.)
- Workflow Libraries: Build a searchable database of automation templates for your organization
- Competitive Analysis: Analyze which integrations and patterns are trending in the automation space
- Training Data: Collect workflow structures for analysis or ML model training
Features
- Template Metadata: Name, description, categories, nodes used, popularity
- Full Workflows: Optionally include complete workflow JSON for import
- Filtering: By category, node/integration, or search query
- Batch Processing: Efficiently scrapes large template collections
Input
| Field | Type | Description |
|---|---|---|
maxTemplates | integer | Max templates to scrape (0 = all, default: 0) |
includeWorkflows | boolean | Include full workflow JSON (slower) |
category | string | Filter by category (e.g., "marketing") |
node | string | Filter by integration (e.g., "openai", "slack") |
search | string | Search query for name/description |
Output
Template Metadata
{"id": 1234,"name": "AI Content Generator","description": "Generate blog posts with OpenAI","categories": ["marketing", "content"],"nodes": ["openai", "google-docs"],"totalViews": 5432,"createdAt": "2024-01-15T...","user": {"username": "n8n-team"}}
With Workflow (when includeWorkflows: true)
{"id": 1234,"name": "AI Content Generator","workflow": {"nodes": [...],"connections": {...}}}
Example Usage
Get top 50 templates
{"maxTemplates": 50}
Get OpenAI templates with workflows
{"node": "openai","maxTemplates": 20,"includeWorkflows": true}
Search for email automation
{"search": "email automation","maxTemplates": 30}
Notes
- The n8n template library contains 7000+ templates
- Full workflow fetch requires additional API calls per template
- Rate limiting is handled automatically