Arco AI is an end-to-end automated sales agent built with n8n that captures, qualifies, enriches, and converts leads using AI.
It simulates a real B2B sales process — from lead intake to follow-up — without manual intervention.
This workflow automates the entire lead lifecycle:
- Lead capture via webhook (form submission)
- Initial storage in Airtable
- AI-based lead qualification
- Data enrichment (API + AI inference)
- Decision-making (call, email, or nurture)
- Automated email follow-ups
- Notifications for high-value leads
- Webhook endpoint (
/lead-capture) - Accepts form data (name, email, company, message)
- Stores leads in Airtable
- Tracks:
- Status
- Score
- Type
- Intent
- Timestamp
- Uses LLM (Groq - LLaMA 3.3 70B)
- Outputs:
- Score (0–100)
- Type (hot, warm, cold)
- Intent
- Summary
- External API (Apollo) for additional data
- Fallback: domain-based inference
- Combines:
- Original data
- Previous AI output
- Domain inference
- Produces:
- Final score
- Lead quality
- Decision (call, email, nurture)
- Routes leads automatically:
- 🔥 Hot → Direct call/email + Slack notification
- 🟡 Warm → Soft email outreach
- ❄️ Cold → Nurturing sequence
- Hot leads → Immediate outreach + booking link
- Warm leads → Soft engagement email
- Cold leads → Multi-step nurturing:
- Value email (Day 1)
- Case/insight email (Day 3)
- Slack alerts for high-value leads
- Includes:
- Name
- Company
- Score
- Intent
- n8n – Workflow automation
- Groq API – LLM processing (LLaMA 3.3 70B)
- Airtable – CRM / data storage
- Apollo API – Lead enrichment (optional)
- Gmail – Email automation
- Slack – Notifications
- Import the provided JSON into n8n
Set up:
- Airtable API
- Groq API key
- Gmail OAuth
- Slack API
- Apollo API (optional)
Replace:
your_api→ actual API keys- Email sender/receiver
- Calendly link
- Endpoint:
/lead-capture - Connect to your form (Typeform, custom frontend, etc.)
{
"name": "John Doe",
"email": "john@company.com",
"company": "Company Inc.",
"message": "We want to automate our lead qualification process."
}
{
"lead_quality": "high",
"final_score": 90,
"recommended_action": "call"
}Built by Steve as part of an advanced automation and AI systems portfolio.







