The Email Verifier API requires an email address along with the API key. It returns the result of the verification to know if this email address is deliverable or not, with the detailed validations.

API Usage

Using the email verifier API endpoint is pretty straightforward. All you need to do is perform a GET request on the main lookup endpoint using the following schema.

curl -X GET https://verify-email.maildim.com/api/v1/email-verifier/[email protected]?apikey={your-apikey-goes-here}

sample API response

{
        "email": "[email protected]",
        "deliverable": true,
        "status": "valid",
        "regexp": true,
        "disposable": false,
        "catch_all": false,
        "free_email": false,
        "role": true,
        "mx_records": [
                "mx2.zoho.com",
                "mx.zoho.com",
                "mx3.zoho.com"
        ],
        "smtp_server": true,
        "smtp_check": true,
        "block": false,
        "username": "support",
        "domain": "devrolabs.com"
}