# Bulk Email Verifier (`thecfmarketing/bulk-email-verifier`) Actor

Premium bulk email verifier. Verify email delivery status at scale asynchronously with 99% accuracy.

- **URL**: https://apify.com/thecfmarketing/bulk-email-verifier.md
- **Developed by:** [sadique shaikh](https://apify.com/thecfmarketing) (community)
- **Categories:** Lead generation, Automation, MCP servers
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.35 / 1,000 email verifieds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

## 🚀 Bulk Email Verifier & Deliverability Checker

A high-performance, enterprise-grade **Bulk Email Verifier** to validate lists, clean bad emails, and check inbox deliverability at scale.

At just **$0.50 per 1,000 verifications ($0.0005/email)**, this is the most cost-effective and accurate email validator on the Apify Store—helping you keep bounce rates under 1% and protect your sender reputation.

***

### 📊 Why Choose Our Bulk Email Verifier?

| Feature | This Actor 🚀 | Hunter.io | NeverBounce | ZeroBounce |
| :--- | :--- | :--- | :--- | :--- |
| **Price per 1,000** | **$0.50** | $2.00 | $8.00 | $15.00 |
| **SMTP Handshake** | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |
| **Office 365 Deep Check**| ✅ Yes | ❌ No | ❌ No | ❌ No |
| **Only Pay on Success** | ✅ Yes | ❌ No | ❌ No | ❌ No |
| **Duplicates Cleaned** | ✅ Yes (Free) | ❌ Charged | ❌ Charged | ❌ Charged |

*Failed verifications, syntax errors, and empty lines are automatically skipped and **never charged**!*

***

### 🔍 How the 6-Layer Verification Engine Works

Each email address is processed through a series of deep validation checks:

1. **Syntax Validation**: Checks if the email follows standard formatting rules (RFC compliant).
2. **Domain & MX Checking**: Confirms if the domain is active and has valid Mail Exchanger (MX) records to receive mail.
3. **Office 365 Directory Handshake**: Special protocol check to validate Microsoft/O365 mailboxes with 100% accuracy.
4. **SMTP Connectivity Check**: Establishes a temporary connection to the recipient's mail server to check mailbox existence without sending a real email.
5. **Disposable & Burner Filter**: Flags temporary burner accounts (e.g. Mailinator, TempMail) to prevent spam signups.
6. **Role Account & Free Email Detection**: Detects functional group emails (e.g., info@, support@) and free providers (Gmail, Yahoo).

***

### 📥 Input Configuration

Input is extremely simple. You only need to configure:

- **Emails Input List (`leads`)**: Paste your list of emails (one address per line).
- **Concurrency Limit**: Maximum number of parallel workers (default is 5).

***

### 📤 Dataset Output Schema

The results are saved directly to your default Apify Dataset. Below is the detailed schema:

| Field | Type | Description | Example Value |
| :--- | :--- | :--- | :--- |
| **Email** | `string` | The validated email address. | `test@example.com` |
| **Status** | `string` | Verification status: `Valid`, `Invalid`, `Uncertain`, `Ignored`, or `Error`. | `Valid` |
| **Reason** | `string` | Details of the validation result (e.g., SMTP success, Disposable, Catch-All). | `Valid` |
| **Time** | `string` | Elapsed query duration. | `0.00s (Cached)` |
| **CatchAll** | `string` | Whether the domain accepts all emails (`Yes`, `No`, or empty). | `No` |
| **Disposable**| `boolean`| `true` if the domain is a temporary/burner provider. | `false` |
| **Role** | `boolean`| `true` if it is a department/functional account (e.g., info@). | `false` |
| **FreeEmail** | `boolean`| `true` if the domain is a free provider (Gmail/Yahoo). | `true` |
| **MXRecord** | `string` | The hostnames of the resolved mail exchanger servers. | `mx.example.com` |
| **Error** | `string` | Network or authorization error details if any occurred. | `""` |

***

### 📋 JSON Output Example

```json
[
  {
    "Email": "test@example.com",
    "Status": "Valid",
    "Reason": "Valid",
    "Time": "0.00s (Cached)",
    "CatchAll": "No",
    "Disposable": false,
    "Role": false,
    "FreeEmail": true,
    "MXRecord": "gmail-smtp-in.l.google.com",
    "Error": ""
  }
]
```

***

### 🔒 Privacy & Compliance

- **GDPR & CCPA Compliant**: We do not store or sell your list data.
- **Secure Processing**: Connections are fully encrypted.
- **Zero Spam Risk**: The validator does not send emails to recipients during validation.

# Actor input Schema

## `leads` (type: `string`):

One email address per line (e.g. test@example.com).

## `concurrency_limit` (type: `integer`):

Maximum number of simultaneous API requests to make to prevent rate limiting.

## Actor input object example

```json
{
  "leads": "test@example.com\nhello@domain.com",
  "concurrency_limit": 5
}
```

# Actor output Schema

## `dataset` (type: `string`):

URL to the dataset containing the scraped or processed results.

# 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 = {
    "leads": `test@example.com
hello@domain.com`
};

// Run the Actor and wait for it to finish
const run = await client.actor("thecfmarketing/bulk-email-verifier").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 = { "leads": """test@example.com
hello@domain.com""" }

# Run the Actor and wait for it to finish
run = client.actor("thecfmarketing/bulk-email-verifier").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 '{
  "leads": "test@example.com\\nhello@domain.com"
}' |
apify call thecfmarketing/bulk-email-verifier --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,thecfmarketing/bulk-email-verifier"
        }
    }
}

```

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/HDVGQfZT8aMCHwoHm/builds/ghrYnFSkfzxUyQQly/openapi.json
