# Email Pattern Finder

**Use case:** 

Find the email format any company uses (e.g. first.last@domain) with a confidence score, MX check and catch-all detection. JSON or CSV.

## Input

```json
{
  "domains": [
    "stripe.com"
  ],
  "goal": "high-deliverability",
  "autoFilter": "none",
  "compareToPrevRun": false,
  "searchWebsite": true,
  "searchGitHub": true,
  "verifyEmails": true,
  "enableProFallback": false,
  "crmFormat": "generic-json",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "isSendable": {
    "label": "Is Sendable",
    "format": "boolean"
  },
  "sendDecision": {
    "label": "Send Decision",
    "format": "object"
  },
  "pattern": {
    "label": "Email Pattern",
    "format": "string"
  },
  "confidence": {
    "label": "Confidence",
    "format": "number"
  },
  "confidenceLevel": {
    "label": "Confidence Level",
    "format": "string"
  },
  "bounceRiskBucket": {
    "label": "Bounce Risk",
    "format": "string"
  },
  "isCatchAll": {
    "label": "Catch-All Domain",
    "format": "boolean"
  },
  "mxValid": {
    "label": "MX Valid",
    "format": "boolean"
  },
  "emailsAnalyzed": {
    "label": "Emails Analyzed",
    "format": "integer"
  },
  "generatedEmails": {
    "label": "Generated Emails",
    "format": "array"
  },
  "plainEnglishSummary": {
    "label": "Plain-English Summary",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Email Pattern Finder - Discover Company Email Formats](https://apify.com/ryanclinton/email-pattern-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/email-pattern-finder) to learn more, explore other use cases, and run it yourself.