Automate lead qualification by enriching inbound leads with company data, running them through an AI scoring model (BANT or MEDDIC criteria), then routing high-score leads directly to sales reps via Slack or CRM while low-score leads enter a nurture sequence. The stack: Lead form → Clearbit/Apollo enrichment → AI scoring API → HubSpot/Pipedrive → Slack notification. Implementation: 3–5 hours. Result: sales team only touches pre-qualified leads.
Build your lead form to capture actionable signals:
Use Typeform, Tally, or a custom form with a webhook on submission.
Connect the form webhook to an enrichment step:
Option A — Clearbit Enrichment API (paid):
GET https://person.clearbit.com/v2/combined/find?email=${leadEmail}
Authorization: Bearer ${CLEARBIT_API_KEY}
Returns: company name, size, industry, funding, location, LinkedIn URL.
Option B — Apollo.io API (has free tier):
POST https://api.apollo.io/v1/people/match
{ "email": "${leadEmail}", "api_key": "${APOLLO_API_KEY}" }
Option C — Hunter.io + manual enrichment for low-volume pipelines.
Call the assisters.dev API with enriched lead context:
POST https://assisters.dev/api/v1/chat/completions
Authorization: Bearer ${ASSISTERS_API_KEY}
{
"model": "assisters-chat-v1",
"messages": [
{
"role": "system",
"content": "You are a lead qualification expert. Score leads 0-100 based on ICP fit and BANT. Return JSON: { score: number, tier: 'hot'|'warm'|'cold', reasoning: string, next_action: string }"
},
{
"role": "user",
"content": "Lead: Role: {{jobTitle}}, Company: {{companyName}}, Size: {{employeeCount}}, Industry: {{industry}}, Challenge: {{painPoint}}, Budget: {{budget}}, Timeline: {{timeline}}. Our ICP: B2B SaaS companies 50–500 employees, heads of marketing or operations, budget $500+/mo."
}
]
}
In Make, add a Router module after the AI scoring step:
Use HubSpot API or Pipedrive API to create a contact with all enriched fields:
POST https://api.hubapi.com/crm/v3/objects/contacts
Authorization: Bearer ${HUBSPOT_API_KEY}
{
"properties": {
"email": "{{email}}",
"company": "{{companyName}}",
"jobtitle": "{{jobTitle}}",
"ai_lead_score": "{{score}}",
"ai_lead_tier": "{{tier}}",
"ai_reasoning": "{{reasoning}}"
}
}
| Tool | Purpose | Cost |
|---|---|---|
| Typeform / Tally | Lead capture form with webhooks | Free – $50/mo |
| Make (Integromat) | Automation orchestration | Free – $19/mo |
| Clearbit or Apollo.io | Lead data enrichment | $99/mo or free tier |
| assisters.dev | AI lead scoring API | Pay-per-use |
| HubSpot / Pipedrive | CRM for lead management | Free – $45/mo |
| Slack | Sales team notifications | Free – $8/user/mo |
Template 1 — Inbound form → instant hot lead alert Typeform submission → Make webhook → Apollo enrichment → AI score → if score > 70 → Slack DM to sales rep within 60 seconds
Template 2 — Website visitor → intent-based scoring Visitor downloads gated content → form submission → enrich → AI score → route to CRM with lead magnet context in notes
Template 3 — Re-engagement scoring Weekly cron → query CRM for leads inactive 30+ days → AI re-scores based on new company data → move warmed leads back to active sequence
Q: How accurate is AI lead scoring vs. manual scoring? AI scoring trained on your ICP criteria matches or exceeds manual scoring accuracy within 2–4 weeks of calibration. The key is providing clear, specific ICP attributes in the system prompt.
Q: What if our ICP changes? Update the system prompt in your Make scenario. Changes take effect immediately — no retraining required.
Q: Can AI detect spam or competitor leads? Yes — include disqualification rules in the system prompt: "Score 0 if email is from a competitor domain, if role is student/intern, or if company size is under 5 employees."
Q: How do we handle leads who don't complete the form fully? Enrichment fills gaps — Clearbit/Apollo can infer company size and industry from the email domain alone, giving the AI enough context to produce a meaningful score even with partial form data.
Q: Is BANT still the best framework for AI scoring in 2026? BANT remains effective for SMB sales. MEDDIC or SPICED are stronger for enterprise sales. Specify your preferred framework in the AI system prompt.
Q: What CRMs work best with this automation? HubSpot (best free tier), Pipedrive (best UX), and Salesforce (enterprise) all have robust APIs that work seamlessly with Make and the AI scoring workflow.
Automated AI lead qualification is one of the highest-leverage sales automations available. Your sales team stops wasting time on cold leads and closes more deals with the same headcount. Implement the basic flow this week and refine over 30 days. More automation guides at Misar Blog — and power your AI scoring with assisters.dev.
Free newsletter
Join thousands of creators and builders. One email a week — practical AI tips, platform updates, and curated reads.
No spam · Unsubscribe anytime
The definitive reference for AI tools in 2026: categories, top picks, pricing, workflows, and how to assemble a stack th…
AI makes decisions. Automation executes repetitive tasks. Robotics is the physical body. They combine in many modern sys…
Originality.ai Fact Checker, Perplexity, Factinsect, Google Fact Check, and more — AI fact-checking tools compared on ac…
Comments
Sign in to join the conversation
No comments yet. Be the first to share your thoughts!