Verify Email

Verify if an email address is valid and active

POST/v1/verifyEmail
Server URL
https://api.hatchhq.ai
Headers
x-api-key *string
Body
email*string

Authorization

x-api-key<token>

API key for authentication

In: header

Request Body

application/jsonRequired
emailRequiredstring

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

Response
{
  "emailVerificationStatus": "verified"
}
TypeScript
export interface Response {
  emailVerificationStatus: string;
}