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.
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)
credits
object
Credit breakdown

Error Responses

CodeMessage
400Invalid JSON input
401No apikey found in the x-api-key headers
401This apikey is not valid
422Insufficient balance
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 }
  }
}