Skip to content Skip to sidebar Skip to footer

Email verification API

Introduction

Our API endpoint for email address verification allows you to easily check the validity and reliability of email addresses. With our API, you can verify various aspects of an email address, including the format, domain, and username, ensuring that your communications are sent to legitimate and accurate addresses.

Method: GET

URL-Parameters:

  • email (required, string)
Example request:

GET https://api.apicheck.nl/verify/v1/email

This call will return the following JSON data:

{
    "error": false,
    "data": {
        "disposable_email": false,
        "greylisted": false,
        "status": "valid"
    }
}
{
    "error": false,
    "data": {
        "disposable_email": false,
        "greylisted": false,
        "status": "invalid"
    }
}
{
    "error": false,
    "data": {
        "disposable_email": false,
        "greylisted": true,
        "status": "unknown"
    }
}

Error responses

Invalid API-key
HTTP 401 (unauthorized)
Your API key is incorrect, or invalid.
Login to the ApiCheck dashboard and check your X-API-KEY header as documented in the Authorization documentation.
{
    "error": true,
    "name": "api_key_invalid",
    "description": "Api key invalid"
}

Run and try out in Postman: