# Verify a CSV of email addresses from a URL

**Use case:** 

Point it at a CSV, JSON or text file of addresses and get every one checked. Headers and quoting are handled, so an export needs no reformatting. Results are grouped per domain, worst first, so one dead domain shows as one problem rather than four hundred.

## Input

```json
{
  "emails": [
    "jane.doe@apify.com",
    "info@python.org",
    "nobody@mailinator.com",
    "not-an-email",
    "someone@this-domain-does-not-exist-9x8v7q.com"
  ],
  "fileUrls": [
    "https://raw.githubusercontent.com/python/cpython/main/Lib/test/test_email/data/msg_01.txt"
  ],
  "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`).
