LinkedIn Email Finder βœ… Verified Emails + Company Data πŸ“§ avatar

LinkedIn Email Finder βœ… Verified Emails + Company Data πŸ“§

Pricing

from $20.00 / 1,000 email founds

Go to Apify Store
LinkedIn Email Finder βœ… Verified Emails + Company Data πŸ“§

LinkedIn Email Finder βœ… Verified Emails + Company Data πŸ“§

Find & verify emails from LinkedIn profiles, companies, and leads. Real-time email verification with score. Pay only when email found. No login, no cookies, no proxy.

Pricing

from $20.00 / 1,000 email founds

Rating

0.0

(0)

Developer

Redify

Redify

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

LinkedIn Email Finder βœ… Verified Emails + Company Data

The only LinkedIn actor that finds emails AND verifies them in real-time. Get personal & work emails with verification status (valid/invalid/catch-all), reliability score (0-100), and full company enrichment β€” all in one run.

No login. No cookies. No proxy. No scraping. Results in seconds, not minutes.


Why this actor is different

FeatureOther LinkedIn toolsThis Actor
Email verification❌ Not included β€” you need ZeroBounce ($)βœ… Built-in β€” real-time verification with score
Pricing❌ Pay per profile, even without emailβœ… Pay per email found β€” no email = free
Reliability❌ Gets blocked by LinkedIn anti-botβœ… 100% reliable β€” never blocked
Setup❌ Requires cookies & login credentialsβœ… Zero setup β€” no login needed
Speed❌ Slow β€” waits for page loadsβœ… Instant β€” seconds, not minutes
Proxy❌ Needs expensive residential proxiesβœ… No proxy β€” saves you money
Data❌ Basic profile data onlyβœ… Profile + company enrichment
Emails❌ Email is a paid add-onβœ… Personal & work emails included
Bulk❌ One profile at a timeβœ… Up to 500 per run

Pricing β€” Pay only for verified emails

$0.020 per result with email found. No email? No charge. Not found? No charge.

ScenarioCost
βœ… Profile found with verified email$0.020
❌ Profile found without emailFree
❌ Profile not foundFree

Example: You search 200 profiles. 80 have an email β†’ 80 Γ— $0.02 = $1.60 total. The other 120 are free.

No subscription. No minimum. No hidden fees.


πŸ‘€ Mode 1: Profile Lookup

Paste LinkedIn URLs or usernames β€” get full profile data with verified email.

{
"mode": "profile",
"urls": [
"https://www.linkedin.com/in/williamhgates/",
"https://www.linkedin.com/in/satlouis/"
]
}

Sample result:

{
"linkedin_url": "https://www.linkedin.com/in/williamhgates",
"fullname": "Bill Gates",
"job_title": "Co-Chair",
"company": "Bill & Melinda Gates Foundation",
"country": "United States",
"industry": "Philanthropy",
"email": "billg@microsoft.com",
"email_status": "valid",
"email_score": 100,
"email_catch_all": false,
"email_disposable": false,
"email_free_provider": false,
"work_email": "bill.gates@gatesfoundation.org",
"work_email_status": "valid",
"work_email_score": 100,
"company_size": 1544,
"company_industry": "Philanthropy",
"company_website": "http://www.gatesfoundation.org",
"company_country": "United States",
"company_city": "Seattle",
"company_founded": 2000,
"data_available": true
}

🏒 Mode 2: Company Employees

Enter a company name β€” get every employee with verified email and job title.

{
"mode": "company",
"companyName": "Salesforce",
"maxResults": 200
}

Returns: Company details (size, revenue, industry, website) + all employees with: name, job title, verified email, country, LinkedIn URL.

Build targeted prospect lists by combining filters.

{
"mode": "search",
"jobTitle": "Marketing Director",
"country": "France",
"industry": "Technology",
"minEmployees": 100,
"maxResults": 200
}

Returns: Matching LinkedIn profiles with verified emails and company data.


Email verification β€” built-in, real-time

Every email is automatically verified using our BounceVerify engine before it reaches your dataset. No need for a separate verification service β€” it's included at no extra cost.

FieldDescriptionExample
email_statusVerification resultvalid, invalid, catch-all, unknown
email_scoreReliability score (0-100)100
email_catch_allDomain accepts all emailsfalse
email_disposableTemporary/throwaway addressfalse
email_free_providerFree provider (Gmail, Yahoo...)false
work_email_statusWork email verificationvalid
work_email_scoreWork email score (0-100)100

Filter with confidence: Use email_status to keep only valid emails, or email_score to set your own quality threshold.


Full data returned

Profile fields

FieldDescriptionExample
linkedin_urlLinkedIn profile URLhttps://linkedin.com/in/johndoe
fullnameFull nameJohn Doe
emailPersonal emailjohn@gmail.com
work_emailProfessional emailjohn.doe@company.com
mobilePhone number+1 555-0123
job_titleCurrent positionVP of Sales
companyCurrent companySalesforce
countryLocationUnited States
industryProfessional sectorTechnology
genderGendermale
websitePersonal websitejohndoe.com

Company enrichment (included free)

FieldDescriptionExample
company_sizeNumber of employees73,000
company_revenueAnnual revenue$21.0B
company_industryCompany sectorSoftware
company_websiteCompany websitesalesforce.com
company_foundedYear founded1999
company_countryHQ countryUnited States
company_cityHQ citySan Francisco
company_descriptionCompany overviewEnterprise cloud CRM...
company_linkedin_urlCompany LinkedIn pagelinkedin.com/company/3185

Use cases

  • Sales Prospecting β€” Find decision-makers by job title and company size with verified emails ready for outreach
  • Lead Generation β€” Build targeted email lists filtered by industry, country, and seniority level
  • Recruitment β€” Source candidates by role and location with direct contact info
  • CRM Enrichment β€” Fill missing emails and company data in your CRM automatically
  • Account-Based Marketing β€” Map every contact at target accounts with verified emails
  • Competitive Intelligence β€” Analyze competitor teams, structure, and key hires

Integration

Works with all Apify integrations: REST API, JavaScript, Python, Webhooks, Zapier, Make (Integromat), Google Sheets, Slack, HubSpot, Salesforce, and more.

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("bounceverify/linkedin-profile-email-finder").call(
run_input={
"mode": "profile",
"urls": ["https://www.linkedin.com/in/williamhgates/"]
}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(f"{item['fullname']} β€” {item['email']} ({item['email_status']}, score: {item['email_score']})")

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('bounceverify/linkedin-profile-email-finder').call({
mode: 'profile',
urls: ['https://www.linkedin.com/in/williamhgates/'],
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach(item =>
console.log(`${item.fullname} β€” ${item.email} (${item.email_status}, score: ${item.email_score})`)
);

FAQ

How does pricing work? $0.020 per result where an email is found. No email = no charge. No subscription, no minimum.

Are the emails verified? Yes. Every email is verified in real-time using our BounceVerify engine. Each result includes email_status (valid, invalid, catch-all, unknown) and email_score (0-100). No need for ZeroBounce or NeverBounce.

How fast are the results? Most runs complete in under 30 seconds, including email verification.

Do I need a LinkedIn account? No. No login, no cookies, no session tokens required.

What if a profile is not found? You get "data_available": false. Not charged.

What if a profile has no email? You get the full profile data for free. Only results with email are charged.

Where are results without email? Results with email β†’ Output tab (charged). Results without email β†’ "no-email-results" dataset in the Storage tab (free).

Can I process in bulk? Yes β€” up to 500 URLs per run. For larger volumes, schedule multiple runs via the API.

What format is the output? JSON in Apify dataset. Export to CSV, Excel, JSON, or push directly to Google Sheets, CRM, or any webhook.


Input parameters

ParameterModeRequiredDescription
modeAllβœ…profile, company, or search
urlsProfileβœ…LinkedIn URLs or usernames (up to 500)
companyNameCompanyβœ…Company name or domain
jobTitleSearchβ€”Filter by job title (e.g. "CEO", "Marketing Director")
countrySearchβ€”Filter by country (e.g. "France", "United States")
industrySearchβ€”Filter by industry (e.g. "Technology", "Finance")
minEmployeesSearchβ€”Minimum company size
maxResultsCompany, Searchβ€”Max results (default: 100, max: 500)