The Validate Email API allows you to check whether a given email address is valid and return its metadata.
https://api.api-ninjas.com/v1/validateemail
Returns metadata (including whether it is valid) for a given email address. This API will check the formatting of the email and the existence of DNS records for the domain to make sure it is a valid email address.
email
requiredEmail address to validate.
X-Api-Key
requiredAPI Key associated with your account.
https://api.api-ninjas.com/v1/validateemail?email=info@api-ninjas.com
Headers
X-Api-Key
Log in or sign up to get your API Key
1
2
3
4
5
6
7
{
"is_valid": true,
"domain": "api-ninjas.com",
"email": "info@api-ninjas.com",
"mx_records": true,
"disposable": false
}
1
2
3
4
5
6
7
8
9
import requests
email = 'info@api-ninjas.com'
api_url = 'https://api.api-ninjas.com/v1/validateemail?email={}'.format(email)
response = requests.get(api_url, headers={'X-Api-Key': 'YOUR_API_KEY'})
if response.status_code == requests.codes.ok:
print(response.text)
else:
print("Error:", response.status_code, response.text)
If your programming language is not listed in the Code Example above, you can still make API calls by using a HTTP request library written in your programming language and following the above documentation.