# Email Finder & Verifier API — Find Verified B2B Emails (`qualifyops/email-finder-verified`) Actor

Email finder + verifier: give a name and company domain, get their verified, deliverable work email — live SMTP check, catch-all excluded, no bounces. Find and verify anyone's business email before you send. Pay only per verified email found. B2B leads, cold email, sales prospecting.

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

## Pricing

from $8.00 / 1,000 verified email founds

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use 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

### Email Finder + Verifier — Name & Domain → Deliverable Email

**You give:** a person's name and their company domain — e.g. `Patrick Collison` + `stripe.com`.
**You get:** their **verified, deliverable email address** — one confirmed mailbox, with a confidence score, marked **FOUND** or **NOT_FOUND**.
**You pay:** **only per verified email found — $0.008.** Not-found is **free**.

No LinkedIn, no scraping of protected sources. This is a deterministic **pattern engine** plus **live deliverability verification** — the two things that actually turn a name into an address you can send to.

---

#### Why "verified" is the whole point
Most email finders hand you `first.last@company.com` and call it a day. You send, it bounces, and your domain reputation takes the hit. Here, every `FOUND` address has been through:

> pattern generation → syntax → MX record → **live SMTP mailbox check** → catch-all detection → confidence score

Only an address that a real mail server **accepts**, that is **not catch-all**, at **confidence ≥ 0.80**, is returned as `FOUND`. Everything else is `NOT_FOUND` with a reason and a clearly-labelled `best_guess` — never a silent, billed guess.

#### How it works
1. **Normalize** the name (lowercase, strip accents/punctuation) and the domain (strip `https://`, `www.`, paths — full URLs are fine).
2. **Generate candidates** in priority order: `first.last`, `first`, `flast`, `firstlast`, `first_last`, `f.last`, `last.first`, `lastf`, `first-last`, `last` — each `@domain`.
3. **Optional site scan** (`siteScan`, on by default): fetch the company's homepage, `/contact` and `/about` and promote any **published** address that matches a candidate to the front — those are real, not guesses.
4. **Local pre-filter (free):** drop bad-syntax candidates and, if the domain has **no MX record at all**, return `NOT_FOUND` immediately — with **no charge**.
5. **One batched deliverability check:** survivors go to a proven Apify Store validator with real SMTP egress, in a single call per run.
6. **Pick the winner:** the first deliverable, non-catch-all, confident address becomes `FOUND`. **You are charged only for FOUND.**

#### What each row gives you
| Column | Meaning |
|---|---|
| `action` | **FOUND** (verified deliverable) or **NOT_FOUND** (with reason) |
| `firstName` / `lastName` | The person you asked about |
| `domain` | The normalized company domain |
| `verified_email` | The deliverable address — **only on FOUND** |
| `pattern` | Which pattern won (`first.last`, `flast`, `published`, …) |
| `confidence` | 0–1 deliverability confidence |
| `source` | `pattern` (generated) or `published` (found on the company site) |
| `candidates_checked` | How many addresses were tested |
| `reason` | On NOT_FOUND: `catch_all_domain` / `all_rejected` / `no_mx` / `verifier_unavailable` |
| `best_guess` / `best_guess_confidence` | On NOT_FOUND: the most-likely address, **clearly not verified** |

#### Honest by design
- We **never invent** an address and label it verified. `FOUND` means a live mail server accepted that specific mailbox.
- **Catch-all domains** — which accept everything and confirm nothing — are returned as `NOT_FOUND` (`catch_all_domain`) and **are not charged**. We will not bill you for a domain that cannot actually confirm the person.
- If the verifier is unavailable, we degrade to `NOT_FOUND` (`verifier_unavailable`) — never a fabricated "deliverable" result, never a charge.
- A `best_guess` is always presented as a guess, never as a verified address.

#### For agents & automation
Call it via the Apify **API** or **MCP**. Pass an array of `{firstName, lastName, domain}` (or `{fullName, domain}`) and get back deduped, verified rows — ideal as a step in an enrichment pipeline. **Schedule** it for recurring enrichment of a lead list into your CRM or sequencer. You pay only for the addresses that are actually deliverable.

---
*Input: `people` (array of name + domain). Optional: `maxCandidatesPerPerson` (cost cap), `siteScan`, `verifierActorId`, `requestTimeoutSecs`.*

# Actor input Schema

## `people` (type: `array`):

Each item: {"firstName":"...","lastName":"...","domain":"..."}. You may pass "fullName" instead of first/last, and a full URL instead of a bare domain — both are normalized.
## `maxCandidatesPerPerson` (type: `integer`):

Upper bound on how many candidate addresses are sent to the verifier per person (caps cost).
## `siteScan` (type: `boolean`):

Fetch homepage, /contact and /about and promote any published address that matches a candidate (real, not a guess).
## `verifierActorId` (type: `string`):

Apify Store validator used for the live SMTP deliverability check. Default is a proven high-volume validator.
## `requestTimeoutSecs` (type: `integer`):

How long to wait for each company web page during the optional site scan.

## Actor input object example

```json
{
  "people": [
    {
      "firstName": "Patrick",
      "lastName": "Collison",
      "domain": "stripe.com"
    },
    {
      "firstName": "Tobi",
      "lastName": "Lutke",
      "domain": "shopify.com"
    }
  ],
  "maxCandidatesPerPerson": 6,
  "siteScan": true,
  "verifierActorId": "michael.g/email-verifier-validator",
  "requestTimeoutSecs": 20
}
````

# 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 = {
    "people": [
        {
            "firstName": "Patrick",
            "lastName": "Collison",
            "domain": "stripe.com"
        },
        {
            "firstName": "Tobi",
            "lastName": "Lutke",
            "domain": "shopify.com"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("qualifyops/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 = { "people": [
        {
            "firstName": "Patrick",
            "lastName": "Collison",
            "domain": "stripe.com",
        },
        {
            "firstName": "Tobi",
            "lastName": "Lutke",
            "domain": "shopify.com",
        },
    ] }

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

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

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

```

## CLI example

```bash
echo '{
  "people": [
    {
      "firstName": "Patrick",
      "lastName": "Collison",
      "domain": "stripe.com"
    },
    {
      "firstName": "Tobi",
      "lastName": "Lutke",
      "domain": "shopify.com"
    }
  ]
}' |
apify call qualifyops/email-finder-verified --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=qualifyops/email-finder-verified",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Email Finder & Verifier API — Find Verified B2B Emails",
        "description": "Email finder + verifier: give a name and company domain, get their verified, deliverable work email — live SMTP check, catch-all excluded, no bounces. Find and verify anyone's business email before you send. Pay only per verified email found. B2B leads, cold email, sales prospecting.",
        "version": "0.1",
        "x-build-id": "l3fbMVhbU5KRCfDjn"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/qualifyops~email-finder-verified/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-qualifyops-email-finder-verified",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/qualifyops~email-finder-verified/runs": {
            "post": {
                "operationId": "runs-sync-qualifyops-email-finder-verified",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/qualifyops~email-finder-verified/run-sync": {
            "post": {
                "operationId": "run-sync-qualifyops-email-finder-verified",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "people"
                ],
                "properties": {
                    "people": {
                        "title": "People (name + company domain)",
                        "type": "array",
                        "description": "Each item: {\"firstName\":\"...\",\"lastName\":\"...\",\"domain\":\"...\"}. You may pass \"fullName\" instead of first/last, and a full URL instead of a bare domain — both are normalized."
                    },
                    "maxCandidatesPerPerson": {
                        "title": "Max candidate patterns per person",
                        "minimum": 1,
                        "maximum": 15,
                        "type": "integer",
                        "description": "Upper bound on how many candidate addresses are sent to the verifier per person (caps cost).",
                        "default": 6
                    },
                    "siteScan": {
                        "title": "Scan the company website for published emails",
                        "type": "boolean",
                        "description": "Fetch homepage, /contact and /about and promote any published address that matches a candidate (real, not a guess).",
                        "default": true
                    },
                    "verifierActorId": {
                        "title": "Verifier actor (advanced)",
                        "type": "string",
                        "description": "Apify Store validator used for the live SMTP deliverability check. Default is a proven high-volume validator.",
                        "default": "michael.g/email-verifier-validator"
                    },
                    "requestTimeoutSecs": {
                        "title": "Website request timeout (seconds)",
                        "minimum": 5,
                        "maximum": 60,
                        "type": "integer",
                        "description": "How long to wait for each company web page during the optional site scan.",
                        "default": 20
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
