Verify API

Verify Single Email Address

Checks the validity and various characteristics of the given email address

get/verify/v1/email

Query parameters

addressstring required

Email address to verify

verifyCatchAllstring

Verify catch-all domain

Response

Successful response

alternateEmailstring

AlternateEmail provides an alternate email if available

deliverablestring

Deliverable indicates whether the email is deliverable (e.g., "true", "false", "unknown")

emailstring

Email is the email address that was verified

isCatchAllboolean

IsCatchAll indicates if the email address is a catch-all address

isRiskyboolean

IsRisky indicates whether the email address is risky (e.g., used in spam or phishing)

messagestring

Message contains any additional information or errors related to the verification

providerstring

Provider is the email service provider (e.g., Gmail, Outlook)

secureGatewayProviderstring

SecureGatewayProvider is the secure gateway provider (e.g., Proofpoint, Mimecast)

statusstring

Status indicates the status of the verification (e.g., "success" or "failure")

Example response

{
  "alternateEmail": "alternate@example.com",
  "deliverable": "true",
  "email": "example@example.com",
  "message": "Email verified successfully",
  "provider": "gmail",
  "risk": {
    "isFreeProvider": true,
    "isPrimaryDomain": true
  },
  "secureGatewayProvider": "Proofpoint",
  "status": "success",
  "syntax": {
    "domain": "example.com",
    "isValid": true,
    "user": "example"
  }
}

Changes