Anymail finder
Millions of emails, a REST call away
Get access to the same data our web application uses with a highly reliable API.
Look up an email
Use our API to easily look up any person's email from just the name and the domain.
https://api.anymailfinder.com/v3.0/search/person.json
{
"alternatives": [
"john@acme.com",
"smithj@acme.com"
],
"best_guess": "jsmith@acme.com",
"email_class": "validated",
"status": "success"
}
Read more in the docs Validate your list's emails
Make sure your reputation is not wasted and prevent fake accounts by validating emails visitors enter in your forms
https://api.anymailfinder.com/v3.0/validate.json
{
"email_verified": true,
"status": "success"
}
Read more in the docs Find emails at random domains
If you don't have names, we can help you identify leads at any url.
https://api.anymailfinder.com/v3.0/search/domain.json
{
"emails": [
{
"email": "john@acme.net",
"email_class": "validated"
},
{
"email": "comments@acme.net",
"email_class": "generic"
},
{
"email": "support@acme.net",
"email_class": "generic"
}
],
"status": "success"
}
Read more in the docs