Email Verifier
Verify Single Email
Validate and check the deliverability of a single email address, including catch-all detection, with the Email Verifier API
POST
POST
Run a single email verification to check its deliverability. Authenticate every request with your API key in the
x-api-key header. For batch operations, use the Verify Bulk Emails endpoint.
Enrow performs determinist verifications that verify even catch-all emails. This means passing the results through a debouncer afterwards isn’t needed.
Request Body
The email to verify
Custom params that will be returned in the GET response and in the webhook notification.
Settings related to this verification.
Response
200 — Verification initiated
Confirmation message
Unique identifier for this verification. Use this to retrieve results via the GET endpoint.
Number of credits consumed (0.25). See Credits & billing for per-endpoint costs.
Credit breakdown
Error Responses
| Code | Message |
|---|---|
| 400 | invalid email format |
| 400 | invalid JSON input |
| 401 | No apikey found in the x-api-key headers |
| 401 | This apikey is not valid |
| 402 | Insufficient credits |
On insufficient credits (402), the response body is
{ "reason": "...", "success": false }. See Error handling for the full list of status codes and response formats.Next steps
Get the result
Retrieve the verification result using the
id.Verify emails in bulk
Verify many email addresses in a single request.
Authentication
How to pass your API key in the x-api-key header.
Webhooks
Get notified automatically when a verification completes.

