Verify Email Address

This email checker API allows you to validate an email address. The validation will parse the name if possible and check whether the email is not just a disposable junk email address. The API will also check if the email is from a free provider like Gmail, Yahoo, or Hotmail.

Additionally, if the email address is valid and the user has a gravatar account, you can get more information such as the image of the user. This can be useful for user registration forms to show the user a preview of their profile picture.

Based on the verification result, you can decide whether to allow the user to register with the email address or block it because of invalid temporary email addresses or free email providers if you are only interested in business users.

GET
https://api.apileague.com/verify-email
Example Request and Response
GET
https://api.apileague.com/{{ examples.getVerifyEmail }}
{
  "email": "[email protected]",
  "domain": "gmail.com",
  "first_name": "Max",
  "middle_name": null,
  "last_name": "Test",
  "full_name": "Max Test",
  "username": "mtst",
  "image": "https://0.gravatar.com/avatar/e61fff419c2ddf685b1520e768d33e40",
  "result": "valid",
  "disposable": false,
  "accept_all": false,
  "free_provider": true
}
cURL
Java
Javascript
Python
Go
C#
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}
 {{ codeCopyText }}