Today, I learned how to verify an email address using API Form Validation and also, verify the validity of a bulk amount of email addresses that you want to check. The e-mail verifier website provides a free API for using email validation or checks the valid or invalid email addresses without any expense (cost). It is free and always will be.
The e-mail verifier has launched this as a free API service that anyone can use for collecting email validation or checking if the email is valid or not. The email verifier follows 3 steps to check if an email is valid or invalid.
- Email is valid or not.
- Email service provider to get Mx Records and create a socket with the port number to send request of your email service provider whenever an email is valid so service provider sends status as OK; otherwise bad request status is returned.
- e-mail verifier checks the status and returns a JSON response.
http:www.e-mailverifier.com/v2/lookup/developer.php?Email={{Email-values}}
API Response - {
- "data":
- {
- "valid_host": true,
- < -- - This Key indicate email address host valid or not "valid_format": true,
- < -- - This Key indicate email address format valid or not "valid_mx_records": true,
- < -- - This Key indicate email MX Records valid or not "possible_email_correction": "",
- < -- - This Key indicate email address possible correction "free_email_provider": true,
- < -- - This Key indicate Free email Provider address or not "disposable_email_provider": false,
- < -- - This Key indicate email address provider disposable request.
- "role_or_business_email": false < -- - This Key indicate bussiness email address or not
- },
- "mail_status": true < -- - This Key indicate email is valid or not
- }
To validate an email address or to get free API or any developer documentation, you can visit
email verifier.