# Find a company's email address pattern

**Use case:** 

Find a company's email address pattern from a domain and names - best-guess address with confidence and MX check. No API key. CSV/JSON.

## Input

```json
{
  "domain": "stripe.com",
  "names": [
    "Patrick Collison",
    "Jane Doe"
  ],
  "verifyMx": true,
  "crawlForPattern": true,
  "maxCandidatesPerPerson": 6
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "best_guess": {
    "label": "Best guess",
    "format": "text"
  },
  "best_guess_confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "email_provider": {
    "label": "Email provider",
    "format": "text"
  },
  "mx_found": {
    "label": "MX",
    "format": "boolean"
  },
  "candidates": {
    "label": "All candidates",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Company Email Finder - Work Email Format by Name + Domain](https://apify.com/flash_scraper/email-pattern-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/flash_scraper/email-pattern-finder) to learn more, explore other use cases, and run it yourself.