# Find Anyone's Business Email by Name

**Use case:** 

Find a person's work email from their name and company domain: the actor cascades through sources, verifies the address and returns a confidence score.

## Input

```json
{
  "people": [
    {
      "firstName": "Tobias",
      "lastName": "Lutke",
      "domain": "shopify.com"
    },
    {
      "firstName": "Patrick",
      "lastName": "Collison",
      "domain": "stripe.com"
    }
  ],
  "enrichFromWebsite": true,
  "detectPattern": true,
  "inferHierarchy": false,
  "monitorJobChanges": false,
  "verificationLevel": "deep",
  "smtpTimeout": 10,
  "maxConcurrency": 3,
  "outputProfile": "full",
  "watchlistName": "",
  "monitorStateKey": "",
  "lastAction": {},
  "webhookUrl": "",
  "circuitBreakerThreshold": 0,
  "includeAgentContract": true
}
```

## Output

```json
{
  "recommendedAction": {
    "label": "Recommended Action",
    "format": "string"
  },
  "firstName": {
    "label": "First Name",
    "format": "string"
  },
  "lastName": {
    "label": "Last Name",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "email": {
    "label": "Best Email",
    "format": "string"
  },
  "emailConfidence": {
    "label": "Confidence %",
    "format": "integer"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "changeFlag": {
    "label": "Change Flag",
    "format": "string"
  },
  "buyingCommitteeRole": {
    "label": "Buying Committee Role",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "agentContract": {
    "label": "Agent Contract",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Waterfall Contact Enrichment — Email & Phone Lookup](https://apify.com/ryanclinton/waterfall-contact-enrichment) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/waterfall-contact-enrichment) to learn more, explore other use cases, and run it yourself.