Email finder that crawls live websites — not a stale database
Hunter and similar tools guess emails from patterns. We crawl the actual company site — About, Team, Contact, footer — and extract published addresses tied to the person who owns them. Lower bounce, real names, no pattern-guess shrug.
- Live website crawl — every email comes from a page that exists today
- Decodes Cloudflare-protected addresses most scrapers silently lose
- Returns the person + title behind each email, not just an address
- Under 5% bounce on owner emails published on About / Team pages
Example input
brightsmiledental.example.com
Example output
{
"domain": "brightsmiledental.example.com",
"emails": [
{
"address": "sarah@brightsmiledental.com",
"person": "Dr. Sarah Patel",
"title": "Owner / Lead Dentist",
"type": "direct",
"source": "/about",
"bounce_risk": "low"
},
{
"address": "jen@brightsmiledental.com",
"person": "Jennifer Marquez",
"title": "Office Manager",
"type": "direct",
"source": "/team",
"bounce_risk": "low"
},
{
"address": "info@brightsmiledental.com",
"person": null,
"type": "generic",
"source": "/contact",
"bounce_risk": "low"
}
]
}What you can extract
- All emails published on the site, with the page each one came from
- Person name and job title when the email is bylined
- Generic vs. direct email labeling (info@ vs sarah@)
- Phone numbers tied to the same person, when published together
- LinkedIn handle and social profiles for each named contact
- Crawl timestamp and source URL for auditability
How it works
- 1Paste a domain, or upload a CSV of domains, or describe a market we can resolve to domains.
- 2We crawl every page where emails typically appear and decode obfuscated addresses.
- 3Get a structured list with each email tied to a person, title, and source page.
Common use cases
- Find the owner's direct email before sending cold outreach
- Bulk-find emails for 500 domains for an outreach campaign
- Verify email lists you bought elsewhere by re-extracting from live sites
- Find press / media contact emails for PR outreach
- Recruit candidates by finding hiring-manager emails on company sites
- Audit your own company's site to see what addresses are publicly exposed
FAQ
How does the email finder actually work?
Give us a domain (or a company name we can resolve to a domain) and we crawl the public pages — About, Team, Contact, Meet the Owner, footer — looking for email addresses. We also decode Cloudflare-protected addresses (the ones shown as '[email protected]'), which most scrapers silently miss. The result is the actual addresses published on the site, tied to a person and title when available.
Can it find someone's email by first name + last name + company?
Yes, when the person is named on the company's site. If 'Sarah Patel' appears on the About page with her direct email, we return it. If she's not named publicly, we can't invent her address — pattern-guessing tools (like firstname@domain.com) work for some companies but bounce 30-50% of the time. We only return addresses that actually appear on the live site.
Is this free?
The free tier gives you 50 emails per month with no credit card. Paid plans start at $9/month for 250, and scale up to 15,000/month on Business. No per-API-call billing, no overage charges.
How is this different from Hunter.io?
Hunter pattern-matches against a database of historical emails and uses domain patterns to guess. We do live website crawling — when the email is published on the site, we extract it; when it's not, we tell you that instead of guessing. Hunter wins for large companies where employees aren't named on the public site. We win for small businesses where the owner's name and email actually appear on About / Team / Contact pages.
What's the bounce rate on found emails?
Addresses published on a live company website typically bounce 5–10%. That's better than most database-based finders (which often see 20-40% bounce because the data is months or years old). For owner emails specifically — where the address is tied to a named person on the site — bounce rates are usually under 5%.
Can I bulk-find emails for a list of domains?
Yes. Upload a CSV of domains or use the Find Leads tool to generate them from a description. We process them in parallel — 500 domains usually takes 12–20 minutes — and return one row per domain with every email found, tied to the person and source page when possible.