# Bulk find work emails for a prospect list

**Use case:** 

Find verified work emails for multiple prospects in one run using names and company domains, with SMTP validation and confidence signals.

## Input

```json
{
  "people": [
    {
      "firstName": "Satya",
      "surname": "Nadella",
      "domain": "microsoft.com"
    },
    {
      "firstName": "Brian",
      "surname": "Chesky",
      "domain": "airbnb.com"
    },
    {
      "firstName": "Tobias",
      "surname": "Lutke",
      "domain": "shopify.com"
    }
  ],
  "mode": "optimized",
  "useNicknames": false
}
```

## Output

```json
{
  "firstName": {
    "label": "First Name",
    "format": "text"
  },
  "surname": {
    "label": "Last Name",
    "format": "text"
  },
  "businessName": {
    "label": "Business Name",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "domainResolved": {
    "label": "Domain Resolved",
    "format": "boolean"
  },
  "originalCompany": {
    "label": "Original Company",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "nicknameUsed": {
    "label": "Nickname Used",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "isDeliverable": {
    "label": "Is Deliverable",
    "format": "boolean"
  },
  "validationStatus": {
    "label": "Validation Status",
    "format": "text"
  },
  "isSafeToSend": {
    "label": "Safe to Send",
    "format": "boolean"
  },
  "isCatchAll": {
    "label": "Catch-All",
    "format": "boolean"
  },
  "isDisposable": {
    "label": "Disposable",
    "format": "boolean"
  },
  "isRoleAccount": {
    "label": "Role Account",
    "format": "boolean"
  },
  "overallScore": {
    "label": "Overall Score",
    "format": "number"
  },
  "alternativeEmails": {
    "label": "Alternative Emails",
    "format": "array"
  },
  "variationsTested": {
    "label": "Variations Tested",
    "format": "number"
  },
  "eventsCharged": {
    "label": "Events Charged",
    "format": "number"
  },
  "patternsValidated": {
    "label": "Patterns Validated",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [Email Finder & Verifier - B2B Email Lookup API](https://apify.com/clearpath/email-finder-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/clearpath/email-finder-api) to learn more, explore other use cases, and run it yourself.