Comment on page
📧
Email Validation
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.
- 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.
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 | |
mode | Lets you use our Development Environment to test the API without affecting your available requests (Learn more). |
All parameters with (*) are required.
{
"data": {
"score": 3,
"reason": "Invalid email domain.",
"isValid": false
},
"status": "success",
"executionTime": 10
}
Key | Values |
---|---|
data.score | Float |
data.reason | String |
data.isValid | Boolean |
Last modified 16d ago