Call us toll free @ 888-497-7898

listverify - verifysingleemail

Allows you to verify an email address real time.

Returns: Valid -if the email is good.
Otherwise returns a message containing the status.


API Call Information
area: listverify
action: verifysingleemail

API Arguments
Argument Data Type Required Description
email string Yes pass an email address as test@test.com
smtpverify boolean either 1 or 0 No if set to 1 does a full smtp verify check default is 0
smtpreason boolean either 1 or 0 No if set to 1 gives them smtp response only if smtpverify is set to 1
skipsuppression boolean either 1 or 0 No if set to 1 skips suppression check default is 0
API Url Example:
https://api.hypermail.com/api.php?apikey=YOURAPIKEYHERE&area=listverify&action=verifysingleemail&email=test@test.com&smtpverify=1&smtpreason=1

API Result:
XML Response JSON Response
<response>
  <email>Valid</email>
</response>
{
    "email": "Valid"
}