# Sales prospect email enrichment workflow

**Use case:** 

Enrich a prospect list with likely business email addresses using company websites, GitHub commits, and Gravatar signals.

## Input

```json
{
  "people": [
    {
      "firstName": "Melanie",
      "lastName": "Perkins",
      "domain": "canva.com",
      "company": "Canva"
    },
    {
      "firstName": "Tobias",
      "lastName": "Lutke",
      "domain": "shopify.com",
      "company": "Shopify"
    },
    {
      "firstName": "Drew",
      "lastName": "Houston",
      "domain": "dropbox.com",
      "company": "Dropbox"
    }
  ],
  "checkWebsite": true,
  "checkGitHub": true,
  "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.