Links
Comment on page
📧

Email Validation

Overview

This method provides an additional layer of validation for your system. While validating email syntax is important, it is not sufficient. This method goes beyond syntax validation by checking the domain's validity and the availability of the Mail Service. By utilising this method, you can ensure a more thorough validation process for email addresses.

What can I expect from this API?

  • Detection of disposable email addresses (also known as Temporary Email Addresses)
  • Testing the email service provider of a given email address
  • Validation of email syntax
get
https://gregeoip.com
/validateEmail
Method endpoint.

Method Parameters

Here's a list of all parameters can be used for this method:
Parameter
Description
key *
Your API Key.
email *
The email address you want to validate.
lang
The language of the API output. (EN, AR, DE, FR, ES, JA, ZH or RU)
format
The format of the API response. (JSON, XML, CSV or Newline)
callback
Tells the API to return the response as a callback function (Check out Callback section).
mode
Lets you use our Development Environment to test the API without affecting your available requests (Learn more).
All parameters with (*) are required.

Sample Response

{
"data": {
"score": 3,
"reason": "Invalid email domain.",
"isValid": false
},
"status": "success",
"executionTime": 10
}

Response Possible Values

Key
Values
data.score
Float
data.reason
String
data.isValid
Boolean