# Enrich a Clay table with verified emails

**Use case:** 

Pull a name-and-domain list from a Clay table export and map back the best email, its verification status and a confidence score. $4 per 1,000.

## Input

```json
{
  "people": [
    "Jane Doe, google.com",
    "Sara Lee, google.com",
    "Alex Smith, microsoft.com"
  ],
  "testRun": false,
  "onlyFound": false,
  "includeKeywords": [],
  "excludeKeywords": [],
  "verify": true,
  "verifyDepth": "mx",
  "columns": [
    "bestEmail",
    "bestEmailStatus",
    "confidence"
  ],
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "query": {
    "label": "Person + domain submitted",
    "format": "string"
  },
  "found": {
    "label": "Found?",
    "format": "boolean"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "message": {
    "label": "Details",
    "format": "string"
  },
  "firstName": {
    "label": "First name",
    "format": "string"
  },
  "lastName": {
    "label": "Last name",
    "format": "string"
  },
  "domain": {
    "label": "Company domain",
    "format": "string"
  },
  "hasMailRoute": {
    "label": "Domain accepts mail",
    "format": "boolean"
  },
  "mostLikelyEmail": {
    "label": "Most likely email",
    "format": "string"
  },
  "mostLikelyPattern": {
    "label": "Most likely pattern",
    "format": "string"
  },
  "candidateEmails": {
    "label": "Candidate emails",
    "format": "array"
  },
  "candidateCount": {
    "label": "Candidate count",
    "format": "number"
  },
  "mailboxVerified": {
    "label": "Mailbox verified",
    "format": "boolean"
  },
  "bestEmail": {
    "label": "Best email (verified)",
    "format": "string"
  },
  "bestEmailStatus": {
    "label": "Best email status",
    "format": "string"
  },
  "mxProvider": {
    "label": "Mail provider",
    "format": "string"
  },
  "isCatchAll": {
    "label": "Domain is catch-all",
    "format": "boolean"
  },
  "confidence": {
    "label": "Confidence (0-1)",
    "format": "number"
  },
  "patternsTried": {
    "label": "Patterns verified (top 3)",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Email Finder by Name and Domain: Company Email Format + Verify](https://apify.com/accountable_eel/email-pattern-finder.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/accountable_eel/email-pattern-finder.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/accountable_eel/email-pattern-finder.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`).
