POST
/
webhook
/
email
/
verify
Email Verification
curl --request POST \
  --url https://webhook.cocoonmail.com/webhook/email/verify \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "sourabh@inofinix.com"
}'
{
  "message": "Email successfully verified",
  "data": {
    "email": "sourabh@inofinix.com",
    "status": "safe",
    "checked_at": "2025-08-29T07:28:02.043803Z"
  }
}

Verify Email Address

Use this endpoint to verify if an email address is valid and safe before sending campaigns or transactional emails.
This helps maintain list hygiene and improves deliverability.

Request Requirements

  • Required field:
    • email: The email address to verify.

Response fields

PropertyDescription
200Email successfully verified
400Invalid request (e.g., missing or badly formatted email)
401Unauthorized request - API key missing or invalid
500Internal server error

Authorizations

Authorization
string
header
required

Use your API key with the 'Bearer ' prefix

Body

application/json
email
string<email>
required
Example:

"sourabh@inofinix.com"

Response

Email successfully verified

message
string
Example:

"Email successfully verified"

data
object