Search emails for any company using a domain name
Find professional emails using full names
Find companies from keywords and locations
Find company emails from YouTube channels
Find company emails from Twitter profiles
Find businesses and extract their email addresses
Verify email quality and deliverability
Detect temporary and throwaway emails
Access all Minelead features in your browser
Connect with CRM platforms and tools
Find emails from any domain via API
Verify email deliverability via API
Enrich leads with job title, location and more
Detect real-time B2B buying signals
Find emails from YouTube & Twitter profiles
Detect fake sign-ups via API
Integrate Minelead into your applications
Search emails for any company using a domain name
Find professional emails using full names
Find companies from keywords and locations
Find company emails from YouTube channels
Find company emails from Twitter profiles
Find businesses and extract their email addresses
Verify email quality and deliverability
Detect temporary and throwaway emails
Find emails from any domain via API
Verify email deliverability via API
Enrich leads with job title, location and more
Detect real-time B2B buying signals
Find emails from YouTube & Twitter profiles
Detect fake sign-ups via API
Integrate Minelead into your applications
Access all Minelead features in your browser
Connect with CRM platforms and tools
Earn credits by referring friends
Minelead helps businesses extract, verify, enrich B2B email data, and gather intent signals for sales outreach.
Returns all verified emails for that domain. Free to try.
Know their name? Find their professional email instantly.
Check deliverability, MX records and catch-all status.
Find local businesses and extract their contact emails.
Get verified B2B emails, enriched lead profiles and buying intent signals at scale. 21M+ emails indexed. Free to start.
Marcus leads mobility sales at Harborline, driving fleet partnerships across the West Coast with 8+ years in B2B logistics.
Reach out to Marcus now — Harborline is actively hiring sales and just closed a Series B. High conversion probability.
From real-time email discovery to verification, lead enrichment, buying intent detection, and powerful APIs — Minelead covers every step of your outreach workflow.
Real-time web crawl · 21M+ verified emails.
Minelead crawls the web in real-time for publicly available email addresses, then cross-references our database of 21M+ verified contacts — giving you maximum coverage for any company domain, in seconds.
Try company search →No more bounced campaigns.
Minelead's email verifier checks every address against MX records, SMTP, syntax rules and disposable domain lists — so you know exactly what's safe to send before you hit send.
Try email verifier →No more guessing who to contact.
Type a full name and company domain into Minelead's email finder and get a verified professional email address in seconds — no LinkedIn scraping, no guesswork.
Try email finder →Find a person's email by their full name and company domain.
No more wasting calls on cold accounts.
Track hiring surges, funding rounds, product launches and expansion signals — then score every prospect hot, warm or cold. Prioritize the accounts actively in a buying cycle and skip the rest.
Explore API →Google is demonstrating strong buying intent through recent product launches in AI and partnerships in AI infrastructure.
Position solutions to align with Google's ongoing AI expansion and infrastructure development needs.
No more hunting for local business emails.
Search any category and location on Google Maps, Bing, Yahoo or Yelp — Minelead crawls every matching business website and extracts their professional email addresses automatically.
Try Google Maps finder →No more gaps in your CRM records.
Send any email address to Minelead's Lead Enrichment API and get back job title, location, industry, gender and a professional bio — ready to push straight into your CRM or lead scoring model.
Explore API →Sarah leads revenue strategy at Acme Corp, driving enterprise growth across North America. Previously VP Sales at Stripe and Salesforce, with 12+ years in B2B SaaS.
No more dead-end YouTube rabbit holes.
Turn YouTube channels into a source of qualified B2B leads. Enter any channel URL and get the company email behind it.
Try YouTube finder →No more manual social profile digging.
Find company emails from YouTube channels and Twitter/X profiles programmatically. Build bulk pipelines using social media as your lead source.
Explore API →No more fake sign-ups polluting your list.
Stop throwaway and temporary email addresses from polluting your database. Integrate via API to block fake sign-ups at the source — in real time.
Try it →No more manual prospect research.
Filter millions of companies by industry, country, headcount and keywords. Minelead returns a targeted list of businesses with verified contact emails — ready to export or push to your CRM.
Try Lead Finder →No technical setup required. Start finding and reaching qualified prospects in minutes.
Search by domain, name, location, or social profile. Every result comes with a quality score and deliverability rating.
Enrich contacts with firmographic data and detect buying intent signals so you know exactly who is ready to buy.
Export to your CRM, run email campaigns, or use our API. Guaranteed deliverability on every send.
Integrate email finding, verification, lead enrichment, buying intent signals and more into your own SaaS or workflow with our well-documented REST API.
import requests # Find all emails for a company domain resp = requests.get( "https://api.minelead.io/v1/search/", params={"key": "YOUR_API_KEY", "domain": "stripe.com"} ) data = resp.json() # {"status": "found", "domain": "stripe.com", # "pattern": "{first}@stripe.com", "emails": [...]} for e in data.get('emails', []): print(f"✓ {e['email']} quality={e['quality']}") # ✓ john.smith@stripe.com quality=96 # ✓ jane.doe@stripe.com quality=91
import requests # Verify deliverability of a single email resp = requests.get( "https://api.minelead.io/v1/validate/", params={"key": "YOUR_API_KEY", "email": "john@stripe.com"} ) data = resp.json() # {"status": "success", "form": true, # "mx": true, "exist": true, "personal": false} print('Status :', data.get('status')) # success | catch-all | error print('MX ok :', data.get('mx')) # True | False print('Exists :', data.get('exist')) # True | False | "unknown" print('Webmail :', data.get('personal'))# True | False
import requests # Enrich a contact from their email resp = requests.get( "https://api.minelead.io/v1/enrich/", params={"key": "YOUR_API_KEY", "email": "john@stripe.com"} ) data = resp.json() # {"status": "success", "name": "John Smith", # "role": "VP of Engineering", # "company_full": "Stripe, Inc.", # "location": "San Francisco, CA"} print(f"{data['name']} — {data['role']}") print(f"{data['company_full']}, {data['location']}") # John Smith — VP of Engineering # Stripe, Inc., San Francisco, CA
import requests # Detect buying intent signals for a company resp = requests.get( "https://api.minelead.io/v1/buying-intent/", params={ "key": "YOUR_API_KEY", "company": "Stripe", "domain": "stripe.com", } ) data = resp.json() # {"status": "success", "intent_level": "hot", # "intent_score": 80, "confidence": "high"} print('Level :', data['intent_level']) # hot / warm / cold / none print('Score :', data['intent_score']) # 0–100
import requests # Find emails from a Twitter/X or YouTube URL resp = requests.get( "https://api.minelead.io/v1/social-email-finder/", params={ "key": "YOUR_API_KEY", "url": "https://www.youtube.com/@mkbhd", } ) data = resp.json() # {"status": "found", "platform": "youtube", # "channel_name": "Marques Brownlee", "domains": [...]} for grp in data.get('domains', []): for e in grp['emails']: print(f"✓ {e['email']} quality={e['quality']}") # ✓ marques@mkbhd.com quality=92
import requests # Check if an email is disposable resp = requests.get( "https://api.minelead.io/v1/detect-disposable/", params={"key": "YOUR_API_KEY", "email": "user@tempmail.com"} ) data = resp.json() # {"status": "success", "email": "user@tempmail.com", # "disposable_status": "Disposable", # "mx_record_status": "Present"} if data['disposable_status'] == 'Disposable': raise ValueError('Disposable emails are not allowed.') # ValueError: Disposable emails are not allowed.
"My experience has been excellent, I have nothing bad to say about the software. I am very excited for the future of Minelead, and I am sure that more people are going to use it."
"When it comes to quality domain finder, Minelead.io is the best. We managed to reach out to thousands of companies already which eventually led to an increase in our revenue."
"I like that you can do real time company email lookup to find company emails without wasting time. Using the mail verifier you get much needed information, that helps you target the right people."
Join 58K+ sales professionals, recruiters and marketers who use Minelead every day to grow their business.
No credit card required · Free credits every month · Cancel anytime
B2B leads at your fingertips
For new users
Sign up in seconds — no credit card required. Apply code at checkout to unlock your discount.