📧
Email Validation
This method can be used as an extra-layer of your system for validating email addresses.
It validates email syntax, domain validity, and Mail Service availablity (only validating syntax is not enough).
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 3mo ago