Email Verification

Verify single email address

Performs comprehensive validation of a single email address

get/verify/v1/email

Query parameters

addressstring email required

Email address to verify

verifyCatchAllboolean

Verify catch-all domain

Response

Email verification results

requestIdstring
statusstring

Status indicates the result of the operation ("success" or "error")

Example response

{
  "email": {
    "alternateEmail": "alternate@example.com",
    "deliverable": "true",
    "emailAddress": "example@example.com",
    "provider": "gmail",
    "risk": {
      "isFreeProvider": true,
      "isPrimaryDomain": true
    },
    "secureGatewayProvider": "Proofpoint",
    "syntax": {
      "domain": "example.com",
      "isValid": true,
      "user": "example"
    }
  },
  "requestId": "1234567890abcdef",
  "status": "success"
}

Changes

Changed in 3 of the 23 revisions of this API.6

    • api tag Email Verification added

      api-tag-added

    • api tag Verify API removed

      api-tag-removed

    • added the non-success response with the status 500

      response-non-success-status-added

    • api tag Verify API added

      api-tag-added

    • api tag Email Verification removed

      api-tag-removed

    • removed the non-success response with the status 500

      response-non-success-status-removed