User

These endpoints let you access and manage user-related information. See the details below for more information on how to use them.


POST/single

Verify Single Email

This endpoint allows you to verify a single email address.

Request

POST
/single
curl --location 'https://api.mailverify.ai/api/v1/verify/single' \
--header 'Content-Type: application/json' \
--header 'x-auth-mailverify: apiKey' \
--data-raw '{
  "email": "[email protected]"
}'

Response

{
"message": "Email Verification Result",
"data": {
    "email": "[email protected]",
    "status": "UNKNOWN",
    "catch_all": false,
    "disposable": false,
    "free": false,
    "mailbox_full": false,
    "role": false
}
}

GET/single

List Single Emails

This endpoint allows you to fetch data for a single email by passing the email ID.

Request

GET
/single_emails
curl --location 'https://api.mailverify.ai/api/v1/verify/single_emails?emailId=1234' \
--header 'x-auth-mailverify: apiKey'

Response

{
"count": 1,
"emails": [
    {
        "id": "609836",
        "email": "[email protected]",
        "free": true,
        "disposable": false,
        "catchAll": false,
        "mailboxFull": false,
        "role": true,
        "listId": null,
        "validationStatus": "UNDELIVERABLE",
        "reason": "Rejected Email",
        "createdAt": "2024-12-04T13:38:50.639Z",
        "updatedAt": "2024-12-04T13:38:55.239Z",
        "deletedAt": null
    }
]
}

Was this page helpful?