Make.com Webhook Verify Recipe: Gate Lists Before CRM or Sequencer
Step-by-step Make.com recipe: webhook or HTTP module → Verifly verify → Router on deliverable. Canonical guide lives at /use-cases/make.
Why Make scenarios need a verify gate
Make (formerly Integromat) is where agencies connect forms, Sheets, CRMs, and sequencers. Without a verify step, every bad Apollo guess becomes a HubSpot contact or an Instantly lead. Add Verifly as an HTTP module so only deliverable addresses continue.
This post is the short recipe. The full use-case page with FAQ and related links is canonical at https://verifly.email/use-cases/make.
Recipe: webhook → verify → Router
Create a Custom Webhook (or start from Google Sheets / form). Add an HTTP module: GET https://verifly.email/api/v1/verify?email={{email}} with header Authorization: Bearer vf_…. Parse JSON for result, disposable, role, catch_all. Add a Router: route A when result equals deliverable; route B logs or stops undeliverable and disposable.
- Mint a free vf_ API key (trial credits included).
- HTTP module after the email collector.
- Router: deliverable → CRM/sequencer; else → log sheet.
- Optional: Iterator + POST /api/v1/verify/batch for CSV chunks up to 100.
curl -X GET "https://verifly.email/api/v1/verify?email=prospect@example.com" \
-H "Authorization: Bearer vf_your_api_key"Batch and bulk tips
For spreadsheet cleans, read rows, Iterator over bundles of ≤100, call POST /api/v1/verify/batch, then Aggregate survivors before Instantly or lemlist. For 100k+ Apollo dumps, use the async bulk endpoint and poll job status from Make.
Questions about wiring the Router: hello@veriflyemail.com
FAQ
Frequently asked questions
Is there a native Make app?
Use the HTTP module (or the Make blueprint under /integrations). Same Bearer API as n8n and Clay. Canonical guide: /use-cases/make.
How do I branch on results?
Add a Router (or filter) on the result field from the HTTP module. Send deliverable downstream; log or drop the rest.
Can I verify a whole Sheet from Make?
Yes — Iterator + batch verify, or async bulk for large jobs. Write results back to the sheet.
Who do I contact?
hello@veriflyemail.com only.
Verify before you send
Clean lists are the foundation of every point above. Verify addresses in real time or in bulk with the Verifly API — pay-as-you-go, 100 free credits to start.
More guides