# Bulk LinkedIn Email Finder — Verified Emails, No Cookies (`qualifyops/linkedin-email-finder-verified`) Actor

Turn LinkedIn profile URLs, CSV/Excel/Google Sheets files, or Apify datasets into verified contact emails plus profile and company context. Bulk-ready, no cookies, and billed only when a deliverable non-catch-all email is confirmed.

- **URL**: https://apify.com/qualifyops/linkedin-email-finder-verified.md
- **Developed by:** [QualifyOps](https://apify.com/qualifyops) (community)
- **Categories:** Lead generation, Business
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $30.00 / 1,000 verified leads

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

### Start from companies instead of profile URLs

Need to **discover the people first**? Use **LinkedIn Company Employees Scraper + Verified Email Finder**: https://apify.com/qualifyops/linkedin-company-employees-email-finder

Give it target companies, optionally choose **Decision makers only** + a department, and it builds the employee list before attempting verified business emails. Use this Actor when you already have profile URLs; use the company-employee Actor when you want **company → people → emails** in one run.

## Bulk LinkedIn Email Finder — Verified Emails, No Cookies

Turn a **LinkedIn lead list into verified contact emails at scale**.

**Input:** paste LinkedIn profile URLs/usernames, upload **CSV / Excel / Google Sheets**, or chain an **Apify Dataset ID**.\
**Output:** profile + company context and a **deliverability-checked email** when one is confirmed.\
**Price:** **$0.03 only per verified email found.** Profiles without a confirmed email are returned free.

### Built for bulk lists

Process up to **2,000 profiles per run**. Large inputs are automatically split into safe enrichment batches, so you do not need to manually chop files into tiny jobs.

Common CSV/dataset columns are auto-detected, including `linkedin_url`, `profile_url`, `linkedin`, `url`, `username`, and `public_identifier`.

### Why this exists

A profile scraper gives you people. A guessed email gives you risk. This Actor combines public LinkedIn profile enrichment with a separate deliverability gate and only bills when the mailbox is accepted, non-catch-all and confident enough to send.

### Output

Each row includes `action`, name, headline, current company, profile URL, verified email (FOUND only), confidence and reason when no email is confirmed.

### API / MCP / pipeline use

Use `datasetId` to chain directly from a LinkedIn search, Sales Navigator export or another lead-generation Actor. That makes this a simple final enrichment step before CRM import or outreach.

### Price examples

100 verified contacts = **$3**. 1,000 = **$30**. 2,000 = **$60**. You pay only for FOUND rows.

Need a name + company-domain workflow instead? Use **QualifyOps Email Finder & Verifier API**. Need local-business leads? Use **QualifyOps Google Maps Email Extractor**.

# Actor input Schema

## `profiles` (type: `array`):

Paste LinkedIn profile URLs or public usernames. One per line.

## `csvFile` (type: `string`):

Upload or paste a public CSV/XLSX file or Google Sheets link. Common LinkedIn URL/username columns are auto-detected.

## `datasetId` (type: `string`):

Chain directly from another Actor. Common LinkedIn URL/username fields are auto-detected.

## `maxProfiles` (type: `integer`):

Maximum profiles to process in one run. Larger lists are processed in safe upstream batches.

## `upstreamBatchSize` (type: `integer`):

Profiles sent to the enrichment source per batch.

## `verifierActorId` (type: `string`):

SMTP/catch-all validator used for final deliverability confirmation.

## Actor input object example

```json
{
  "profiles": [
    "satyanadella",
    "https://www.linkedin.com/in/neal-mohan"
  ],
  "maxProfiles": 100,
  "upstreamBatchSize": 100,
  "verifierActorId": "bounceverify/bounceverify-email-verifier"
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "profiles": [
        "satyanadella",
        "https://www.linkedin.com/in/neal-mohan"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("qualifyops/linkedin-email-finder-verified").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "profiles": [
        "satyanadella",
        "https://www.linkedin.com/in/neal-mohan",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("qualifyops/linkedin-email-finder-verified").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "profiles": [
    "satyanadella",
    "https://www.linkedin.com/in/neal-mohan"
  ]
}' |
apify call qualifyops/linkedin-email-finder-verified --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,qualifyops/linkedin-email-finder-verified"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/1YmZNO4QPZw8YTjHJ/builds/Soxe4GGvxl8wxxiW2/openapi.json
