Email Verification HTTP API

Description

This API scrubs single or multiple Email address inputs and returns ‘Verified’, ‘Failed’, or ‘Unknown’ status concerning the deliverability of the Email address. It supports HTTP POST requests.

API Format

{

“ApiKey”: “put your key here“,
“AppendModule”: “EmailVerificationAPI“,
“Data”: [
{
“Email”: “[email protected]“,
}]

}

Multi-Request Example

{

“ApiKey”: “put your key here“,
“AppendModule”: “EmailVerificationAPI“,
“Data”: [
{
“Email”: “[email protected]“,
},
{
“Email”: “[email protected]“,
},
{
“Email”: “[email protected]“,
}]

}

Response

If success:

 }
    “ResponseDetail”: {
        “App”0,
        “Token”“Token Provided”,
        “Data”: [
            {
                “Email”[email protected],
                “Status”“Verified”,
            }
        ],
        “OrderAmount”“$0.005”,
        “Count”1,
    },
    “Status”true,
    “Message”null
}

If failed:

{
      “ResponseDetail”: null,

      “Status”: false,
      “Message”: “Invalid API Key.”
}

Additional Info:

•  Maximum 10 emails allowed per request.

•  Response times are affected by email quality. Wait time can take up to 180 seconds.