Email Verifier & Finder - Validate + Find Emails avatar

Email Verifier & Finder - Validate + Find Emails

Pricing

Pay per usage

Go to Apify Store
Email Verifier & Finder - Validate + Find Emails

Email Verifier & Finder - Validate + Find Emails

Verify email deliverability (syntax, MX, role, disposable) and find likely emails from a name and domain. Bulk, fast, no API key.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Alejandro Bufarini

Alejandro Bufarini

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

1

Monthly active users

3 days ago

Last modified

Share

Two jobs in one actor, with no API key:

  1. Verify a list of emails - checks syntax, looks up the domain's MX records, and flags role accounts (info@, sales@) and disposable domains. Returns a clear status: valid, risky, or invalid, with the reason.
  2. Find likely emails from a person's name and company domain - generates and ranks the common patterns (jane.doe@, jdoe@, jane@...) and confirms the domain accepts mail.
  3. Discover published emails on a company's website (homepage, /contact, /about).

Modes & input

ModeInputReturns
verifyemails: ["a@x.com", ...]status, syntaxValid, mxFound, isRoleAccount, isDisposable, reason, confidence
findpeople: [{fullName, domain}]bestGuess, ranked candidates, mxFound
discoverdomains: ["x.com", ...]emailsFound[], count

Output (verify example)

{
"email": "jane.doe@example.com",
"status": "valid",
"syntaxValid": true,
"domain": "example.com",
"mxFound": true,
"mxHost": "aspmx.l.google.com",
"isRoleAccount": false,
"isDisposable": false,
"confidence": "high",
"reason": "mx_ok"
}

How verification works (honest)

This actor validates at the DNS / MX + heuristic level: syntax, whether the domain can receive mail, and whether the address is a role or disposable account. It does not open an SMTP mailbox handshake (outbound port 25 is blocked on cloud infrastructure, and aggressive SMTP probing gets sender IPs blacklisted). That makes it fast, reliable, and safe for bulk lists. Treat valid as "deliverable domain, well-formed address", not "mailbox confirmed to exist".

Clean for lead-gen pipelines: feed it the output of a scraper and get a deduplicated, status-tagged email list.