# Email finder from company domain

**Use case:** 

Find professional email patterns for people at a specific company domain with website and profile verification methods.

## Input

```json
{
  "people": [
    {
      "firstName": "Brian",
      "lastName": "Chesky",
      "domain": "airbnb.com",
      "company": "Airbnb"
    },
    {
      "firstName": "Dara",
      "lastName": "Khosrowshahi",
      "domain": "uber.com",
      "company": "Uber"
    }
  ],
  "checkWebsite": true,
  "checkGitHub": false,
  "checkGravatar": true
}
```

## Output

```json
{
  "firstName": {
    "label": "First Name",
    "format": "text"
  },
  "lastName": {
    "label": "Last Name",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "confidence": {
    "label": "Confidence",
    "format": "text"
  },
  "sources": {
    "label": "Sources",
    "format": "text"
  }
}
```

## About this Actor

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