Verify email address

Verify an email address for deliverability.

circle-info

PLEASE NOTE: This endpoint requires a premium subscription.

Verify email

POST https://api.verifynest.io/api/public/v1/verify/email

This endpoint allows you to verify and check an email address for deliverability.

Headers

Name
Type
Description

Authorization

string

Bearer <API_KEY>

Request Body

Name
Type
Description

keyword

string

The email address you wish to verify eg: [email protected]

{
    "state": "DELIVERABLE",
    "quality_score": "0.80",
    "details": {
        "email": "[email protected]",
        "autocorrect": null,
        "deliverability": "DELIVERABLE",
        "quality_score": "0.80",
        "is_valid_format": {
            "value": true,
            "text": "TRUE"
        },
        "is_free_email": {
            "value": false,
            "text": "FALSE"
        },
        "is_disposable_email": {
            "value": false,
            "text": "FALSE"
        },
        "is_role_email": {
            "value": false,
            "text": "FALSE"
        },
        "is_catchall_email": {
            "value": null,
            "text": "UNKNOWN"
        },
        "is_mx_found": {
            "value": true,
            "text": "TRUE"
        },
        "is_smtp_valid": {
            "value": true,
            "text": "TRUE"
        }
    }
}

Last updated

Was this helpful?