🧹Bulk Email Verifier✨ – Clean Email Lists & Reduce Bounce Rate avatar

🧹Bulk Email Verifier✨ – Clean Email Lists & Reduce Bounce Rate

Pricing

from $0.05 / 1,000 results

Go to Apify Store
🧹Bulk Email Verifier✨ – Clean Email Lists & Reduce Bounce Rate

🧹Bulk Email Verifier✨ – Clean Email Lists & Reduce Bounce Rate

Verify large email lists and remove invalid addresses before outreach. Reduce bounce rates and protect your sender reputation. Works with CSV, datasets, and automation workflows.

Pricing

from $0.05 / 1,000 results

Rating

0.0

(0)

Developer

Solutions Smart

Solutions Smart

Maintained by Community

Actor stats

0

Bookmarked

6

Total users

3

Monthly active users

8 days ago

Last modified

Share

📧 Bulk Email Verifier

Clean your email lists, reduce bounce risk, and protect your sender reputation.

Bulk Email Verifier is an Apify actor for validating large lists of email addresses before you use them in cold outreach, CRM imports, or automation workflows. It checks each email with practical verification steps and returns clear results you can use immediately in your pipeline.

It is built for simple, affordable bulk verification without paid third-party verification APIs.

🚀 Why use this actor?

If you run:

  • cold email campaigns
  • lead generation workflows
  • CRM imports
  • marketing automation
  • scraped lead pipelines

bad email data creates avoidable problems:

  • higher bounce rates
  • weaker sender reputation
  • wasted credits in outreach tools
  • low-quality CRM records
  • more manual cleanup work

Bulk Email Verifier helps you clean the list before sending, importing, or syncing it elsewhere.

✅ What this actor checks

Each email goes through several validation steps:

  • Syntax validation: checks whether the email format is valid
  • DNS / MX validation: checks whether the domain can receive email
  • Disposable email detection: flags temporary or throwaway email providers
  • Role account detection: flags generic inboxes like info@, sales@, or admin@
  • Free provider signal: marks addresses from providers like Gmail or Yahoo as a separate signal

The actor labels each email as one of these statuses:

  • valid
  • risky
  • invalid
  • unknown

🎯 Typical use cases

🔎 Lead generation

Verify email lists collected from:

  • Google Maps scraping workflows
  • LinkedIn lead collection workflows
  • website contact extraction
  • business directory scraping

✉️ Cold outreach

Clean email lists before sending campaigns with tools such as:

  • Instantly
  • Lemlist
  • Mailshake
  • Smartlead
  • other outreach platforms

🗂️ CRM and list cleanup

Validate contacts before importing into:

  • HubSpot
  • Pipedrive
  • Salesforce
  • Airtable
  • internal sales databases

⚙️ Automation workflows

Use the actor inside:

  • Apify pipelines
  • n8n
  • Make
  • Zapier
  • custom API workflows

📥 Input options

You can provide email lists in several beginner-friendly ways:

  • Inline email array
  • CSV file available at a public URL
  • Raw CSV pasted directly into input
  • Apify Dataset from another actor
  • Apify Key-Value Store record

This makes the actor easy to plug into scraping and enrichment workflows.

⚡ Try it in 30 seconds

Use this small test input to verify a few emails quickly:

{
"emails": [
"contact@company.com",
"info@startup.io",
"hello@gmail.com"
],
"mode": "mx",
"dedupe": true,
"checkDisposable": true,
"checkRoleAccounts": true,
"output": {
"format": "dataset",
"includeReasoning": true
},
"limits": {
"maxEmails": 10,
"concurrency": 5
}
}

This example is also available in examples/input-inline.json.

🧩 Example inputs

The actor uses mode: "mx" for MX validation, checkRoleAccounts for role inbox detection, and source for CSV or dataset inputs. The examples below match the current input schema, so they can be pasted directly into the actor.

Example 1: Quick Email Check

Title

Quick Email Validation

Description

Verify a small list of emails before sending a campaign.

Input JSON

{
"emails": [
"contact@company.com",
"info@startup.io",
"hello@gmail.com"
],
"mode": "mx",
"checkDisposable": true,
"checkRoleAccounts": true,
"output": {
"format": "dataset",
"includeReasoning": true
}
}

Example 2: Verify Emails from CSV

Title

Verify Email List from CSV

Description

Clean a large email list from a CSV file before importing it into your CRM.

Input JSON

{
"source": {
"type": "urlCsv",
"url": "https://example.com/leads.csv"
},
"mode": "mx",
"checkDisposable": true,
"checkRoleAccounts": true,
"output": {
"format": "dataset,csv",
"includeReasoning": true
}
}

The actor automatically uses the email column if it exists, or the first column otherwise.

Example 3: Verify Emails from Scraper Dataset

Title

Verify Emails from Scraper Results

Description

Use this when emails were collected using another actor such as a Google Maps scraper.

Input JSON

{
"source": {
"type": "apifyDataset",
"datasetId": "DATASET_ID"
},
"mode": "mx",
"checkDisposable": true,
"checkRoleAccounts": true,
"output": {
"format": "dataset,csv",
"includeReasoning": true
}
}

If the dataset contains an email field, the actor uses it automatically. If not, it falls back to the first field in each item.

More beginner-friendly examples are also available in examples/README.md. If you want to populate the Apify Store Examples tab manually, use examples/store-examples.md or examples/store-examples.json.

📤 Example output

Each verified email is stored as one item in the default dataset.

{
"email": "john@example.com",
"status": "valid",
"reasons": [],
"signals": {
"syntaxOk": true,
"mxOk": true,
"mxRecords": [
{
"exchange": "mail.example.com",
"priority": 10
}
],
"isDisposable": false,
"isRole": false,
"isFreeProvider": false,
"domain": "example.com"
},
"timing": {
"normalize": 0,
"syntax": 0,
"mx": 42,
"heuristics": 1
},
"reasoning": "Syntax and MX OK; no risky signals."
}

📊 Output fields

FieldDescription
emailNormalized email address
statusFinal classification: valid, risky, invalid, or unknown
reasonsReason codes such as invalid_syntax, no_mx, disposable_domain, or role_account
signalsDetailed machine-readable verification signals
timingPer-step timing information in milliseconds
reasoningHuman-readable explanation when enabled

Results can then be consumed from the default dataset and exported as:

  • JSON
  • CSV
  • Excel
  • API responses

If you set output.format to dataset,csv, the actor also saves results.csv to the default Key-Value Store.

For most use cases:

  • use mode: "mx"
  • keep checkDisposable: true
  • keep checkRoleAccounts: true
  • enable CSV output when you want a ready-to-import file

smtp mode is available as an experimental option, but MX mode is the safer default for production workflows.

▶️ How to use

  1. Open the actor in Apify.
  2. Add emails directly or connect a source such as a CSV URL or dataset.
  3. Choose the verification mode. mx is recommended for most users.
  4. Start the run.
  5. Review the dataset results and export or forward only the contacts you want to keep.

🔄 Built for automation

Bulk Email Verifier is designed to work well inside data pipelines.

Typical workflow:

Lead Scraper
->
Bulk Email Verifier
->
CRM / Outreach Tool

You can also send result batches to your own endpoint using the built-in webhook option.

💻 Local development

Run locally with:

npm install
apify run --input-file examples/input-inline.json

Use --no-purge if you want to keep local storage between runs.

💰 Pricing

The actor uses Apify's consumption-based pricing, so cost depends on list size, concurrency, and DNS response times.

Because the actor does not rely on paid verification APIs, it is generally a low-cost option for bulk pre-verification and list cleaning.

👥 Who should use this actor?

This actor is a practical fit for:

  • marketers
  • growth teams
  • lead generation agencies
  • sales operations teams
  • automation engineers
  • Apify users building scraper-to-CRM workflows

🤝 Support

If you need help or want to suggest improvements:

  • use the repository issue tracker
  • use the actor Issues tab on Apify
  • send feature requests for new workflow integrations or output formats

Feedback is welcome, especially from teams using the actor in real lead generation and outreach pipelines.