# Founder Email Finder by Name and Domain

**Use case:** 

Find likely business email addresses for named contacts using company domains, pattern testing, MX checks, and optional web discovery.

## Input

```json
{
  "emails": [
    "test@gmail.com"
  ],
  "contacts": [
    {
      "firstName": "Patrick",
      "lastName": "Collison",
      "domain": "stripe.com"
    },
    {
      "firstName": "Tobi",
      "lastName": "Lutke",
      "domain": "shopify.com"
    }
  ],
  "verificationLevel": "mx",
  "detectCatchAll": true,
  "maxPatternsToTest": 10,
  "checkDeliverability": true,
  "checkWebsite": true,
  "checkGitHub": false,
  "checkGravatar": false
}
```

## Output

```json
{
  "email": {
    "label": "Email",
    "format": "text"
  },
  "confidenceScore": {
    "label": "Confidence",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "provider": {
    "label": "Provider",
    "format": "text"
  },
  "verificationMethod": {
    "label": "Method",
    "format": "text"
  },
  "isCatchAll": {
    "label": "Catch-All",
    "format": "boolean"
  },
  "isDisposable": {
    "label": "Disposable",
    "format": "boolean"
  },
  "deliverabilityGrade": {
    "label": "Deliverability",
    "format": "text"
  },
  "deliverabilityScore": {
    "label": "Deliv. Score",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Email Verifier, Finder & Deliverability Checker](https://apify.com/automation-lab/email-enrichment) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/email-enrichment) to learn more, explore other use cases, and run it yourself.