Z2 ZI2 Verify
Start free
Docs

Integrations

Make (formerly Integromat)

Build multi-step automations that verify addresses and route them by result.

Setup — HTTP module

Add an HTTP → Make a request module with:

  • URL: https://verify.zi2.app/v1/validate
  • Method: POST
  • Headers: Authorization, Content-Type, Idempotency-Key
  • Body type: Raw · Content type: JSON · Content: {"email":"{{email}}"}
  • Parse response: yes (Make auto-parses JSON responses).

Common scenarios

  • Google Sheets row added → verify → write status back to column.
  • Typeform submission → verify → route "valid" to CRM, "invalid" to bounce list.
  • Airtable "unchecked" record → batch verify → mark checked.

Bulk (batch) via aggregator

To verify many at once without hammering the sync endpoint, use Make's Array Aggregator to build a JSON array, then POST it to /v1/batch. Wait for the webhook or poll /v1/jobs/:id.

Error handling

Enable the HTTP module's "Evaluate all states as errors (except for 2xx and 3xx)" toggle. Route the error branch through a Router → filter by error.code to fan out into different fallback flows (429 → sleep, 401 → alert admin, 400 → drop record).