# Bulk Email Verifier — MX, Disposable & Deliverability (`haketa/bulk-email-verifier`) Actor

Verify thousands of emails at once: syntax, MX/domain check, disposable & role-based detection, free-provider flag and a deliverability score. Fast, cheap, keyless bulk email validation for lead lists and list cleaning.

- **URL**: https://apify.com/haketa/bulk-email-verifier.md
- **Developed by:** [Haketa](https://apify.com/haketa) (community)
- **Categories:** Lead generation, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.70 / 1,000 results

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 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.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.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/platform/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

## Bulk Email Verifier — Syntax, MX, Disposable & Deliverability

Verify **thousands — or millions — of emails at once.** Paste a list and get, for every address: **syntax validity, MX/domain check, disposable & role-based detection, free-provider flag, and a deliverability score** with a clear valid / risky / invalid status.

Fast, cheap and keyless — clean your lead lists before you send, and cut bounces.

---

### Why this Actor?

A dirty email list wrecks your sender reputation: hard bounces, spam traps and wasted sends. Verifying emails one by one is slow, and most tools charge per credit. This Actor cleans a whole list at once — DNS-based, so it's fast and inexpensive at scale — and tells you exactly which addresses are safe to send to.

- **Clean lead lists** before an outreach or newsletter campaign.
- **Cut bounce rate** and protect sender reputation.
- **Enrich a CRM** with deliverability status and flags.
- **Filter forms/signups** by catching disposable and role-based addresses.

---

### What you get

One record per email:

| Field | Description |
| --- | --- |
| `email` | The address |
| `status` | `valid`, `risky`, or `invalid` |
| `isValid` | Whether it's a valid, deliverable address |
| `deliverabilityScore` | 0–100 confidence score |
| `reason` | Why this status |
| `domain` | Email domain |
| `syntaxValid` | Passes RFC syntax |
| `hasMx` | Domain has MX records (can receive mail) |
| `mxHost` | Primary mail server |
| `isDisposable` | Disposable / temporary domain |
| `isRoleBased` | Role address (info@, admin@, sales@…) |
| `isFreeProvider` | Free provider (Gmail, Yahoo, Outlook…) |
| `scrapedAt` | Timestamp |

---

### Example output

```json
{
  "email": "ceo@microsoft.com",
  "status": "valid",
  "isValid": "true",
  "deliverabilityScore": "92",
  "reason": "deliverable",
  "domain": "microsoft.com",
  "syntaxValid": "true",
  "hasMx": "true",
  "mxHost": "microsoft-com.mail.protection.outlook.com",
  "isDisposable": "false",
  "isRoleBased": "false",
  "isFreeProvider": "false",
  "scrapedAt": "2026-07-08T15:00:00.000Z"
}
````

- `bad@nonexistent-domain.com` → **invalid** (no MX — the domain can't receive mail).
- `test@mailinator.com` → **risky** (disposable domain).
- `info@company.com` → **risky** (role-based).
- `john@gmail.com` → **valid** (free provider).

***

### How the status is decided

| Status | Meaning |
| --- | --- |
| **invalid** | Bad syntax, or the domain has no MX record (cannot receive mail) — don't send. |
| **risky** | Deliverable domain but disposable or role-based — send with caution. |
| **valid** | Good syntax + real mail domain, not disposable, not role — safe to send. |

The `deliverabilityScore` (0–100) gives you a single number to threshold on.

***

### Input

| Field | Type | Default | Description |
| --- | --- | --- | --- |
| `emails` | array | — | **Required.** The emails to verify (thousands to millions). |
| `checkDisposable` | boolean | `true` | Flag disposable/temporary domains against an up-to-date blocklist of 7,900+ domains. |
| `maxConcurrency` | integer | `50` | Emails verified in parallel. |

#### Example

```json
{
  "emails": ["john@gmail.com", "info@company.com", "test@mailinator.com"],
  "checkDisposable": true
}
```

***

### Use cases in detail

#### 1. Clean a lead list before outreach

Run your list, keep `status: valid`, drop `invalid`, and review `risky` — you'll cut bounces dramatically and protect your domain's reputation.

#### 2. Reduce newsletter bounce rate

Verify subscribers before a big send; remove dead domains and disposables.

#### 3. Enrich & segment a CRM

Add `deliverabilityScore`, `isFreeProvider` and `isRoleBased` to segment personal vs business vs role contacts.

#### 4. Signup / form hygiene

Catch disposable and role addresses at the point of collection.

***

### How to use it

1. Click **Try for free**.
2. Paste your emails.
3. Click **Start**.
4. Export results as **JSON, CSV, Excel**, or via the Apify API.

Runs are fast — domains are cached, so a big list resolves in seconds.

***

### Calling from the API

```bash
curl -X POST "https://api.apify.com/v2/acts/YOUR_ACTOR_ID/runs?token=YOUR_APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "emails": ["john@gmail.com", "test@mailinator.com"] }'
```

Then fetch the dataset:

```bash
curl "https://api.apify.com/v2/acts/YOUR_ACTOR_ID/runs/last/dataset/items?token=YOUR_APIFY_TOKEN&format=csv"
```

Works with webhooks, Zapier, Make and n8n.

***

### Frequently asked questions

**How does it check deliverability without sending?**
It validates syntax, checks the domain's MX records (whether it can receive mail at all), and flags disposable, role-based and free-provider addresses. This catches the large majority of bad addresses reliably.

**Does it do SMTP mailbox verification?**
No — SMTP mailbox probing requires port 25 (blocked on virtually all cloud/hosting networks) and is unreliable anyway (catch-all domains, greylisting, false positives). This Actor gives you honest, fast, DNS-based verification instead of a flaky SMTP guess.

**How many emails can it handle?**
Thousands to millions — domains are cached, so unique-domain lookups (not per-email) drive the work.

**What's a role-based address?**
Addresses like `info@`, `admin@`, `sales@` that go to a team, not a person — often lower engagement and higher spam-complaint risk.

**Is the disposable list current?**
Yes — it fetches an up-to-date community blocklist (7,900+ domains) on each run, with a built-in fallback.

***

### Tips

- **Threshold on `deliverabilityScore`** (e.g. keep ≥ 80) for a quick clean.
- **Keep `valid`, drop `invalid`, review `risky`** for the safest list.
- **Filter `isRoleBased` / `isFreeProvider`** to separate business from personal contacts.

***

### Notes

This Actor performs DNS/MX lookups and pattern checks on the emails you provide. It does not send mail. Verify that you have the right to process the email addresses you submit, in line with applicable privacy laws (GDPR/CAN-SPAM etc.).

***

### Support

Want catch-all detection, SMTP (where possible), or another flag? Open an issue from the Actor's page.

# Actor input Schema

## `emails` (type: `array`):

The email addresses to verify. Paste a list — handles thousands to millions.

## `checkDisposable` (type: `boolean`):

Flag disposable / temporary email domains (fetches an up-to-date blocklist of 7,900+ domains).

## `maxConcurrency` (type: `integer`):

How many emails to verify in parallel.

## `proxyConfiguration` (type: `object`):

Apify Proxy. Off by default — email verification uses DNS, no proxy needed.

## Actor input object example

```json
{
  "emails": [
    "john@gmail.com",
    "info@apify.com",
    "test@mailinator.com",
    "bad@thisdomaindoesnotexist-xyz9.com"
  ],
  "checkDisposable": true,
  "maxConcurrency": 50,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `email` (type: `string`):

The email

## `status` (type: `string`):

valid / risky / invalid

## `isValid` (type: `string`):

Whether it's a valid deliverable address

## `deliverabilityScore` (type: `string`):

Deliverability score 0-100

## `reason` (type: `string`):

Why this status

## `domain` (type: `string`):

Email domain

## `syntaxValid` (type: `string`):

Syntax valid

## `hasMx` (type: `string`):

Domain has MX records

## `mxHost` (type: `string`):

Primary mail server

## `isDisposable` (type: `string`):

Disposable/temporary domain

## `isRoleBased` (type: `string`):

Role address (info@, admin@…)

## `isFreeProvider` (type: `string`):

Free provider (gmail, yahoo…)

## `scrapedAt` (type: `string`):

Timestamp

# 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 = {
    "emails": [
        "john@gmail.com",
        "info@apify.com",
        "test@mailinator.com",
        "bad@thisdomaindoesnotexist-xyz9.com"
    ],
    "maxConcurrency": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("haketa/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 = {
    "emails": [
        "john@gmail.com",
        "info@apify.com",
        "test@mailinator.com",
        "bad@thisdomaindoesnotexist-xyz9.com",
    ],
    "maxConcurrency": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("haketa/bulk-email-verifier").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 '{
  "emails": [
    "john@gmail.com",
    "info@apify.com",
    "test@mailinator.com",
    "bad@thisdomaindoesnotexist-xyz9.com"
  ],
  "maxConcurrency": 50
}' |
apify call haketa/bulk-email-verifier --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Bulk Email Verifier — MX, Disposable & Deliverability",
        "description": "Verify thousands of emails at once: syntax, MX/domain check, disposable & role-based detection, free-provider flag and a deliverability score. Fast, cheap, keyless bulk email validation for lead lists and list cleaning.",
        "version": "0.1",
        "x-build-id": "kBr7tBgUfUPJdVhF3"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/haketa~bulk-email-verifier/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-haketa-bulk-email-verifier",
                "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/haketa~bulk-email-verifier/runs": {
            "post": {
                "operationId": "runs-sync-haketa-bulk-email-verifier",
                "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/haketa~bulk-email-verifier/run-sync": {
            "post": {
                "operationId": "run-sync-haketa-bulk-email-verifier",
                "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": [
                    "emails"
                ],
                "properties": {
                    "emails": {
                        "title": "Emails to verify",
                        "type": "array",
                        "description": "The email addresses to verify. Paste a list — handles thousands to millions.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "checkDisposable": {
                        "title": "Check disposable domains",
                        "type": "boolean",
                        "description": "Flag disposable / temporary email domains (fetches an up-to-date blocklist of 7,900+ domains).",
                        "default": true
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "How many emails to verify in parallel.",
                        "default": 50
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy. Off by default — email verification uses DNS, no proxy needed.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
