Hi, I'm Maxime π
I built this lightweight scraper to extract email addresses from any website quickly and reliably!
What you'll get
| Field | Description |
|---|---|
url | Website URL that was scraped |
email | Email address found on the page |
Clean, simple dataβno fluff.
Why this scraper?
Most email scrapers are bloated and slow. Mine focuses on speed and accuracy:
- Smart extraction from mailto: links and page content
- Filters out false positives (social handles, CSS syntax, etc.)
- Fast crawling with built-in link following
- Typical scrape finishes in < 1 minute
Input
{
"urls": [
{ "url": "https://example.com" },
{ "url": "https://another-site.com" }
],
"proxyConfiguration": {
// optional; Apify proxy or your own
"useApifyProxy": true
}
}
Tips
- Add as many URLs as you need
- Crawler automatically follows internal links
- Built-in proxy rotation support
Sample output
{
"url": "https://example.com",
"email": "contact@example.com"
}
Under the hood
- Crawlee + Cheerio β fast HTML parsing
- Smart email detection β finds mailto: links and text emails
- Safety levers β 15s timeout, 2 retries, 100-request cap
- Deduplication β no duplicate emails across pages
Perfect for
- Building contact lists
- Lead generation
- Competitor research
- Outreach campaigns
Quick start
- Click "Try for free" β add your URLs
- Press Start
- Download your email list
Simple as that! π