# Clean an email list before you send to it

**Use case:** 

Check a list of email addresses for typos, dead domains, throwaway providers and role mailboxes before you import it anywhere. Each address comes back with a 0-100 score and a plain reason for it. No mailbox handshake is performed, so nothing is claimed that cannot be checked.

## Input

```json
{
  "emails": [
    "jane.doe@apify.com",
    "info@python.org",
    "nobody@mailinator.com",
    "not-an-email",
    "someone@this-domain-does-not-exist-9x8v7q.com"
  ],
  "deduplicate": true,
  "concurrency": 20,
  "checkDomainPolicy": true,
  "checkDomainAge": false
}
```

## Output

```json
{
  "email": {
    "label": "Email",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "score": {
    "label": "Score",
    "format": "integer"
  },
  "reasons": {
    "label": "Reasons",
    "format": "array"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "mxHosts": {
    "label": "MX",
    "format": "array"
  },
  "domainPolicy": {
    "label": "SPF/DMARC",
    "format": "object"
  },
  "domainAgeDays": {
    "label": "Domain age (days)",
    "format": "integer"
  },
  "checkedAt": {
    "label": "Checked",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bulk Email Verifier: Syntax, Domain, MX & Role Checks](https://apify.com/pavel.tashev/email-verifier.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/pavel.tashev/email-verifier.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/pavel.tashev/email-verifier.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
