Email Verifier & Finder - Validate + Find Emails
Pricing
Pay per usage
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
Maintained by CommunityActor stats
0
Bookmarked
3
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Two jobs in one actor, with no API key:
- 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, orinvalid, with the reason. - 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. - Discover published emails on a company's website (homepage, /contact, /about).
Modes & input
| Mode | Input | Returns |
|---|---|---|
verify | emails: ["a@x.com", ...] | status, syntaxValid, mxFound, isRoleAccount, isDisposable, reason, confidence |
find | people: [{fullName, domain}] | bestGuess, ranked candidates, mxFound |
discover | domains: ["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.