Check whether an email address can receive mail, with a deliverability verdict and risk flags (catch-all, disposable, no-MX).
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| string | yes | The email address to verify (valid syntax required). (e.g. satya@microsoft.com) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/email/verify?email=satya%40microsoft.com"
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"errors": null,
"data": {
"email": "satya@microsoft.com",
"deliverable": true,
"reason": "mailbox_accepts",
"catch_all": false,
"mx_hosts": ["microsoft-com.mail.protection.outlook.com"]
}
}Successful responses are wrapped in the standard envelope. The data field carries the actual payload; errors is null on success.
300 free credits on signup, no card required. That covers 30 calls.
Get an API key →