Email Validation API

Email Validation API

Parse and validate email addresses

Overview

Email Validation API is a powerful tool to parse and validate email addresses. This endpoint gives you detailed results and validation scores.

Features

Example

Email Validation API only supports one GET endpoint. Send the following request to validate an email:

curl -X 'GET' 'https://anyapi.io/api/v1/email?email=test%40gmail.com&apiKey=<YOUR_API_KEY>'

which returns this payload:

{
  "valid": false,
  "email": "[email protected]",
  "validators": {
    "regex": {
      "valid": true
    },
    "typo": {
      "valid": true
    },
    "disposable": {
      "valid": true
    },
    "mx": {
      "valid": true
    }
  }
}

Endpoints

This API provides the following endpoints:

Check out the Email Validation API Docs for more details.