All workflows
Sales

Lead capture → AI qualification → CRM

Every inbound form submission is enriched, scored by an LLM against your ICP criteria, and pushed into the CRM with an owner assignment and a Slack ping to the right pod.

Median latency
2.4s
Qualification accuracy
94%
vs. hand-labeled sample of 400
Success rate
99.1%
n8n · lead-capture-qualification.json
read-only preview
yesyesno
Trigger
Webhook: /leads
HTTP
Enrich (Clearbit)
AI
AI Qualifier (Gemini 3 Flash)
Branch
score ≥ 70?
Action
Upsert HubSpot Contact
Notify
Slack #growth
Action
Add to Nurture Sequence
workflow.json
{
  "name": "Lead capture → AI qualification → CRM",
  "nodes": [
    { "type": "n8n-nodes-base.webhook", "parameters": { "path": "leads", "responseMode": "responseNode" } },
    { "type": "n8n-nodes-base.clearbit", "parameters": { "operation": "personEnrichment" } },
    { "type": "@n8n/n8n-nodes-langchain.agent", "parameters": { "model": "google/gemini-3-flash-preview", "systemPrompt": "You are an ICP qualifier..." } },
    { "type": "n8n-nodes-base.if", "parameters": { "conditions": [{ "leftValue": "={{$json.score}}", "operation": "gte", "rightValue": 70 }] } },
    { "type": "n8n-nodes-base.hubspot", "parameters": { "resource": "contact", "operation": "upsert" } },
    { "type": "n8n-nodes-base.slack", "parameters": { "channel": "#growth" } }
  ]
}