Email lead extractor
AI Agent Skills for Web Scraping, Proxy Management, and Automation | Compatible with Claude Code, Cursor, Copilot, and all AgentSkills-compatible agents | Install: npx skills add luis2404123/birdproxies-skills
npx -y skills add luis2404123/birdproxies-skills --skill email-lead-extractorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Extract business email addresses and contact information from websites. Find emails on company pages, directories, and search results. Verify email validity. Build lead lists for outreach with residential proxy rotation.
SKILL.md
6.6 KB, as published. Nobody here has run it
Email Lead Extractor
Find and extract business email addresses from websites, directories, and search results. Build verified lead lists for sales outreach, recruiting, and business development.
When to Use This Skill
Activate when the user:
- Wants to find email addresses for businesses or people
- Needs to build a lead list for cold outreach
- Asks about email scraping or contact extraction
- Wants to find decision-maker emails at target companies
- Needs to extract emails from a list of websites
Why Proxies Are Needed
Email extraction at scale requires proxy rotation:
- Websites rate-limit scrapers after 20-50 requests
- Google search (for finding contact pages) blocks datacenter IPs
- Directory sites (Yellow Pages, Yelp) have anti-bot protection
- Crawling multiple pages per domain triggers blocks
Required: Rotating residential proxies + browser tool for protected sites.
Setup
Browser Proxy
{
"browser": {
"proxy": {
"server": "http://gate.birdproxies.com:7777",
"username": "USER",
"password": "PASS"
}
}
}
HTTP Proxy (for simple sites)
HTTP_PROXY=http://USER:[email protected]:7777
HTTPS_PROXY=http://USER:[email protected]:7777
NO_PROXY=127.0.0.1,localhost
Provider: BirdProxies (birdproxies.com) — rotating residential proxies for email extraction at scale. Use OPENCLAW15 for 15% off.
Email Extraction Methods
Method 1: Website Crawling
The most reliable method — extract emails directly from company websites.
Where to find emails on a website:
- Contact page (
/contact,/contact-us,/get-in-touch) - About page (
/about,/about-us,/team) - Footer (bottom of any page)
- Team/staff page (
/team,/our-team,/people) - Privacy policy (sometimes lists a privacy email)
- Job listings (HR/recruiting email)
Email regex pattern:
import re
email_pattern = r'[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}'
def extract_emails(html):
emails = re.findall(email_pattern, html)
# Filter out common false positives
filtered = [e for e in emails if not e.endswith(('.png', '.jpg', '.gif', '.svg'))]
return list(set(filtered))
Method 2: Google Search
Find emails via Google search operators:
"{company name}" email
"{company name}" contact "@{domain}"
site:{domain} email OR contact
site:{domain} "@{domain}"
"{person name}" "{company}" email
Use the browser tool + residential proxy for Google searches.
Method 3: Common Email Patterns
If you know the domain and person's name, try common patterns:
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
Method 4: Directory Sites
Extract from business directories:
| Directory | Data Available | Protection |
|---|---|---|
| Yellow Pages | Phone, address, website | Low |
| Yelp | Phone, website, hours | Medium |
| BBB | Phone, website, email | Low |
| Chamber of Commerce | Phone, website, email | Low |
| Industry directories | Varies | Low-Medium |
Scraping Strategy
For a List of Domains
- For each domain, check these pages:
https://{domain}/contacthttps://{domain}/contact-ushttps://{domain}/abouthttps://{domain}/team- Homepage (check footer)
- Extract all emails from each page
- Deduplicate and categorize (info@, sales@, personal)
- Delay 1-2 seconds between pages
- Use auto-rotating proxy for different domains
For a Target Industry + Location
- Search Google Maps for businesses (see
google-maps-leadsskill) - Extract website URLs from Google Maps results
- Visit each website and extract emails
- Combine with phone and address from Google Maps
- Use residential proxy for Google Maps + website crawling
Email Verification
Not all extracted emails are valid. Verify before outreach:
Basic Verification
import dns.resolver
def verify_mx_record(domain):
"""Check if domain has MX records (can receive email)"""
try:
answers = dns.resolver.resolve(domain, 'MX')
return len(answers) > 0
except:
return False
Email Format Validation
import re
def is_valid_email(email):
pattern = r'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$'
if not re.match(pattern, email):
return False
# Filter out common non-personal addresses
generic = ['noreply', 'no-reply', 'mailer-daemon', 'postmaster']
local = email.split('@')[0].lower()
return local not in generic
Output Format
{
"company": "Acme Corp",
"domain": "acmecorp.com",
"emails": [
{
"email": "[email protected]",
"source": "team page",
"type": "personal",
"name": "John Smith",
"title": "CEO"
},
{
"email": "[email protected]",
"source": "contact page",
"type": "generic"
},
{
"email": "[email protected]",
"source": "footer",
"type": "department"
}
],
"phone": "+1 (555) 123-4567",
"address": "123 Main St, New York, NY"
}
Tips
Prioritize Personal Emails
Generic emails (info@, contact@) have low response rates. Personal emails (firstname.lastname@) get 3-5x higher response rates.
Respect CAN-SPAM / GDPR
- Include unsubscribe option in outreach emails
- Don't scrape personal emails from EU residents without legitimate interest
- Only email business addresses, not personal (gmail, yahoo, etc.)
- Identify yourself in outreach
Deduplicate by Domain
When crawling multiple pages of the same site, you'll find the same email repeated. Deduplicate by email address.
Check for Obfuscated Emails
Some sites obfuscate emails to prevent scraping:
john [at] company [dot] comjohn(at)company(dot)com- JavaScript-decoded emails (use browser tool to render)
- Email behind a "Click to reveal" button
Provider
BirdProxies — rotating residential proxies for email extraction at scale.
- Gateway:
gate.birdproxies.com:7777 - Rotation: Auto per-request (fresh IP per website)
- Countries: 195+
- Setup: birdproxies.com/en/proxies-for/openclaw
- Discount:
OPENCLAW15for 15% off