Integrations
Zapier
Verify an address inside any zap — HubSpot, Attio, Notion, and 5,000+ apps.
Private beta
Our Zapier integration is in private beta. Reach [email protected] with your Zapier email to get the invite. In the meantime, the recipe below uses Zapier's built-in Webhooks by Zapier action against our REST API.
Recipe: verify new HubSpot contacts
- Trigger: HubSpot → New Contact.
- Action: Webhooks by Zapier → POST
- URL:
https://verify.zi2.app/v1/validate - Headers:
Authorization: Bearer zi2v_live_YOUR_KEY Content-Type: application/json Idempotency-Key: {{contact_id}} - Body:
{"email":"{{contact_email}}"} - Action: HubSpot → Update Contact
- Set custom property
zi2v_statusfrom Zapier's parsed step-2 response.
Common triggers
- HubSpot: New Contact / Updated Contact.
- Attio: New Person / New List Entry.
- Salesforce: New Lead.
- Notion: New Database Item.
- Airtable: New Record.
- Gmail: New Email Matching Search — parse sender + verify.
Tips
- Use the contact/record id as your
Idempotency-Key— Zap retries won't double-charge. - Add a Filter step (
Only continue if…) before the write-back to skip unknown/catchall. - For batch reconciliation of old lists, use
POST /v1/batchinstead — much cheaper per credit.