Skip to main content
POST
/
api
/
ext
/
generic
/
email
/
email-validation
Validate email address
curl --request POST \
  --url https://app.spotzee.com/api/ext/generic/email/email-validation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'email=<string>'
{
  "status": "success",
  "data": {
    "email": "test@example.com",
    "result": "invalid",
    "resultcode": 6,
    "expanded_result": "dns_error",
    "free": false,
    "role": true,
    "executiontime": 16,
    "didyoumean": ""
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Use format: Bearer YOUR_API_KEY

Body

application/x-www-form-urlencoded
email
string
required

Email address

Response

Successfully validated email address

status
enum<string>
required

Indicates successful operation

Available options:
success
data
object
required