# Check whether a domain can receive email

**Use case:** 

Check a domain rather than an address: does it have MX records, does it publish SPF and DMARC, how strict is the DMARC policy, and how long ago was it registered. Useful before you have a single address for a company.

## Input

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

## 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`).
