Check a single email address

Single email check

GET https://api.acychecker.com/api/v1/email_verify/{email}

This endpoint allows you to test an email address and get the results.

Path Parameters

NameTypeDescription

email*

string

The email address you want to check

Headers

NameTypeDescription

API-KEY*

string

Your API key

Content-Type*

string

Must be "application/json"

{
    "message": "",
    "data": {
        "email": "email@example.com",
        "valid": true,
        "disposable": false,
        "free": true,
        "role": false,
        "d_exists": true,
        "exists": "valid",
        "accept_all": false
    }
}

Last updated