# Find Business Emails for E-commerce Founders

**Use case:** 

Find verified business emails for e-commerce and DTC founders by name + company domain. MX-verified, email-provider detected, confidence-scored. No API key.

## Input

```json
{
  "people": [
    {
      "fullName": "Tobias Lutke",
      "companyDomain": "shopify.com"
    },
    {
      "fullName": "Josh Silverman",
      "companyDomain": "etsy.com"
    },
    {
      "fullName": "Niraj Shah",
      "companyDomain": "wayfair.com"
    },
    {
      "fullName": "Ryan Cohen",
      "companyDomain": "chewy.com"
    },
    {
      "fullName": "Katrina Lake",
      "companyDomain": "stitchfix.com"
    }
  ],
  "verify": true,
  "supabaseTable": "nexgendata_leads",
  "deliveryDedup": true
}
```

## Output

```json
{
  "full_name": {
    "label": "Name",
    "format": "text"
  },
  "company_domain": {
    "label": "Domain",
    "format": "text"
  },
  "best_email": {
    "label": "Best email",
    "format": "text"
  },
  "confidence": {
    "label": "Confidence",
    "format": "text"
  },
  "mx_verified": {
    "label": "MX verified",
    "format": "boolean"
  },
  "email_provider": {
    "label": "Email provider"
  },
  "candidate_emails": {
    "label": "Candidate emails"
  },
  "data_source": {
    "label": "Data source"
  },
  "as_of_timestamp": {
    "label": "As of timestamp"
  }
}
```

## About this Actor

This example demonstrates how to use [Person Email Finder — Name + Company to Verified Email API](https://apify.com/nexgendata/person-business-email-finder) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nexgendata/person-business-email-finder) to learn more, explore other use cases, and run it yourself.