The Real Email API is used to programmatically validate email addresses. It can be integrated with any system that can make http API calls. There are language specific examples for python, javascript, php, Java . Other ways to validate emails are using CSV files or Zapier.
{"status": "valid"}
Status | Description |
valid | The email address is valid. |
invalid | The email address is invalid. It is either malformed, there is no mail server at the domain or the address does not exist on the server. |
unknown | It cannot be determined if the email address exists in the mail server. This may happen if there is a mail server which is unresponsive. These validations are not charged. Depending on your use case you may want to block or allow unknown's. |
As an example a curl request would be.
curl 'https://isitarealemail.com/api/email/validate?email=foo@bar.com' \-H 'Authorization: bearer xxxx'{"status": "valid"}