# Find work emails with nickname matching

**Use case:** 

Find professional emails when a prospect may use a nickname, then verify deliverability and return the safest matching address.

## Input

```json
{
  "people": [
    {
      "firstName": "Bill",
      "surname": "Gates",
      "domain": "gatesfoundation.org"
    }
  ],
  "mode": "expanded",
  "useNicknames": true
}
```

## 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.