Skip to main content
POST
/
api
/
email
/
validate
Validate Email
curl --request POST \
  --url https://api.blitz-api.ai/api/email/validate \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "email": "[email protected]"
}
'
{
  "email": "[email protected]",
  "status": "valid"
}

Authorizations

x-api-key
string
header
required

Your Blitz API Key.

Body

application/json
email
string<email>
required

The email address to analyze.

Response

OK

email
string<email>
required

The analyzed email address.

status
string
required

Result: valid, invalid, or catch-all.