Skip to main content
POST
/
email
/
verify
/
single
curl --request POST \
  --url https://api.enrow.io/email/verify/single \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "email": "pam.beesly@dundermifflin.com"
  }'
{
  "message": "Single verification operating",
  "id": "0cf517bc-16e8-45bc-b967-ab9116b3c804",
  "credits_used": 0.25,
  "credits": {
    "amount": 0.25,
    "source": "sub",
    "split": { "fromPaygo": 0, "fromSub": 0.25 }
  }
}
POST
https://api.enrow.io/email/verify/single
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

email
string
required
The email to verify
custom
object
Custom params that will be returned in the GET response and in the webhook notification.
settings
object
Settings related to this verification.

Response

200 — Verification initiated

message
string
Confirmation message
id
string
Unique identifier for this verification. Use this to retrieve results via the GET endpoint.
credits_used
number
Number of credits consumed (0.25). See Credits & billing for per-endpoint costs.
credits
object
Credit breakdown

Error Responses

CodeMessage
400invalid email format
400invalid JSON input
401No apikey found in the x-api-key headers
401This apikey is not valid
402Insufficient 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.
curl --request POST \
  --url https://api.enrow.io/email/verify/single \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: YOUR_API_KEY' \
  --data '{
    "email": "pam.beesly@dundermifflin.com"
  }'
{
  "message": "Single verification operating",
  "id": "0cf517bc-16e8-45bc-b967-ab9116b3c804",
  "credits_used": 0.25,
  "credits": {
    "amount": 0.25,
    "source": "sub",
    "split": { "fromPaygo": 0, "fromSub": 0.25 }
  }
}

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.