How to Automate Lead Generation with n8n
Build a fully automated lead generation pipeline that finds, enriches, and contacts prospects on autopilot.

Why Automate Lead Generation?
Manual outreach doesn't scale. You spend hours finding prospects, verifying emails, and sending messages — only to repeat it all tomorrow.
With n8n, you can build workflows that do this automatically, 24/7.
What You'll Build
- Lead scraping — Pull prospects from LinkedIn, Apollo, or Google Maps
- Email enrichment — Verify and find emails with Hunter.io
- Automated sequences — Send personalized cold emails
- CRM sync — Push everything to your CRM automatically
Step 1: Set Up n8n
Install n8n locally or use the cloud version:
npm install n8n -g
n8n start
Open http://localhost:5678 in your browser.
Step 2: Build the Scraping Node
Connect to your data source. Use the HTTP Request node to pull data from APIs:
{
"method": "GET",
"url": "https://api.apollo.io/v1/mixed_people/search",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
Step 3: Enrich with Hunter.io
Add an HTTP Request node to verify emails:
https://api.hunter.io/v2/email-verifier?email={{$json.email}}&api_key=YOUR_KEY
Step 4: Send Outreach
Connect to your email provider (Gmail, SMTP, or a tool like Instantly) and set up your sequence.
The key to great automation is knowing when to keep humans in the loop. Always review your lists before sending.
Results
With this setup, you can generate 50+ qualified leads per day on autopilot while you focus on closing deals.

Want more like this?
Join Knox community — templates, live sessions, and a network of builders.
Comments
Loading comments...
Published February 14, 2026
Building businesses with automation and AI. Sharing workflows, templates, and real strategies that work.
Related content

Building Your Automation Stack from Zero
A step-by-step roadmap to go from manual everything to a fully automated business operation.
guide
60 Claude Prompts for Real Life: A Practical Cheat Sheet
Sixty prompts I actually paste into Claude — emails, money, learning, hard talks, side hustles. No fluff. Just lines that work on the first try.
guide
Claude in Chrome: Setup Guide + 6 Workflows You'll Actually Use
How to install Claude in Chrome, connect it to Claude Desktop and Claude Code, and start automating real browser workflows in under 10 minutes.
guide