Skip to main content
GET
/
email
/
verify
/
single
curl --request GET \
  --url 'https://api.enrow.io/email/verify/single?id=0cf517bc-16e8-45bc-b967-ab9116b3c804' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "email": "pam.beesly@dundermifflin.com",
  "custom": {
    "external_id": "do4eIF8jF40x!"
  },
  "qualification": "valid"
}
GET
https://api.enrow.io/email/verify/single?id={id}
Retrieve the result of a previously launched email verification using its unique ID. Authenticate every request with your API key in the x-api-key header.
Using a webhook allows you to skip calling this GET endpoint. See How Webhooks Work.

Query Parameters

id
string
required
The unique identifier returned from the POST request

Response

200 — Verification finished

email
string
The verified email address
qualification
string
valid (deliverable) or invalid (not deliverable). Why binary?
custom
object
Custom properties passed in the original request, returned as-is

202 — Verification still in progress

qualification
string
ongoing

Error Responses

CodeMessage
400The single verif id is missing in the URL query string
500Could not retrieve single verification results
See Error handling for the full list of status codes and response formats. Retrieving a result does not consume credits — only the verification itself does. See Credits & billing for per-endpoint costs.
curl --request GET \
  --url 'https://api.enrow.io/email/verify/single?id=0cf517bc-16e8-45bc-b967-ab9116b3c804' \
  --header 'x-api-key: YOUR_API_KEY'
{
  "email": "pam.beesly@dundermifflin.com",
  "custom": {
    "external_id": "do4eIF8jF40x!"
  },
  "qualification": "valid"
}

Next steps

Verify an email

Launch a single email verification to get a search id.

Verify emails in bulk

Run multiple email verifications in a single request.

Webhooks

Get notified automatically when a verification completes.

Authentication

How to pass your API key in the x-api-key header.