Verify Email

Verify if an email address is valid and active

POST
/v1/verifyEmail
/v1/verifyEmail

The Authorization access token

Authorization

x-api-key<token>

API key for authentication

In: header

Request Body

application/jsonRequired

email
Required
string

Email address to verify

curl -X POST "https://api.hatchhq.ai/v1/verifyEmail" \
  -H "x-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "nanduvijay@aabasoft.com"
  }'

Successfully verified email

{
  "emailVerificationStatus": "verified"
}