n8n Workflows Scraper avatar

n8n Workflows Scraper

Pricing

from $2.00 / 1,000 results

Go to Apify Store
n8n Workflows Scraper

n8n Workflows Scraper

This scraper extracts pre-built, free workflow templates directly from the n8n template library. Pick a category and sort order, and the scraper will navigate n8n's library to extract not only the metadata of each workflow but the full, raw JSON configuration.

Pricing

from $2.00 / 1,000 results

Rating

0.0

(0)

Developer

Marco Rodrigues

Marco Rodrigues

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

0

Monthly active users

4 days ago

Last modified

Categories

Share

πŸ€– n8n Workflows Scraper

Want ready-made automations instead of building every flow from scratch? This scraper makes it super easy!

Pick a category and sort order from the n8n template library, and get up to 2000 free workflow templates with metadata plus the full importable workflow_json (nodes, connections, and settings) as CSV or JSON.

πŸ’‘ Perfect for...

  • Automation builders: Discover how others solve CRM, DevOps, AI, support, and ops problems.
  • n8n users: Download free templates you can import without clicking through the library by hand.
  • Market Research: See which categories, patterns, and creators are popular.
  • Data Analysts: Export clean structured workflow data for catalogs and dashboards.
  • πŸ€– AI Agents: Power OpenClaw workflows and bots that need real n8n template structures.
  • πŸ“š RAG Systems: Feed full workflow JSON into Retrieval-Augmented Generation pipelines for generation and troubleshooting.
  • πŸ”— AI Workflows: Integrate with LangChain, AutoGPT, CrewAI, and other stacks that need structured automation templates.

✨ Why you'll love this scraper

  • πŸ“₯ Import-ready JSON: Each result includes the full workflow_json you can paste into n8n.
  • 🎯 Category filtering: 20+ categories like AI Chatbot, Lead Generation, SecOps, and Crypto Trading.
  • πŸ†“ Free templates only: Paid/premium templates are skipped automatically.
  • ⏱️ Sorting Options: Relevancy, Popularity, or Most recent β€” same options as on n8n.io.
  • ⚑ Fast & scalable: Up to 2000 workflows per run via n8n’s public APIs (no slow browser clicking).

πŸ“¦ What's inside the data?

For every workflow you will get:

  • Core Details: id, name, category, workflow_url, description, created_at, total_views
  • Creator: creator_id, creator_name, creator_username, creator_bio, creator_verified
  • The workflow: workflow_json β€” nodes, connections, settings, and metadata

πŸ› οΈ Sort options

You can tell the scraper what order to read templates in using the sort_by parameter:

  • Relevancy – Best match (default)
  • Popularity – Most viewed
  • Most recent – Newest templates first

πŸš€ Quick start

  1. Select a Category (e.g. AI Chatbot).
  2. Choose Sort by.
  3. Set max_workflows (20–2000).
  4. Click Start.
  5. Export JSON so nested workflow_json stays intact (CSV flattens nested objects).

Tech details for developers πŸ§‘β€πŸ’»

Input Example:

{
"category": "AI Chatbot",
"sort_by": "Most recent",
"max_workflows": 100
}

Output Example (truncated):

{
"id": 17658,
"name": "Manage CRM leads by chat with Google Gemini and Google Sheets",
"category": "AI Chatbot",
"workflow_url": "https://n8n.io/workflows/17658-manage-crm-leads-by-chat-with-google-gemini-and-google-sheets/",
"total_views": 120,
"creator_name": "Example Creator",
"creator_username": "example",
"creator_verified": true,
"description": "Chat-driven CRM lead intake with Gemini and Google Sheets…",
"created_at": "2026-08-01T12:00:00.000Z",
"workflow_json": {
"name": "Manage CRM leads by chat…",
"nodes": [],
"connections": {},
"settings": {}
}
}

Input reference

ParameterTypeDefaultDescription
categorystringAI ChatbotCategory of free workflows to scrape.
sort_bystringRelevancyRelevancy, Popularity, or Most recent.
max_workflowsinteger100How many free workflows to collect (20–2000).