# Find Business Emails for AI Company Founders

**Use case:** 

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

## Input

```json
{
  "people": [
    {
      "fullName": "Sam Altman",
      "companyDomain": "openai.com"
    },
    {
      "fullName": "Dario Amodei",
      "companyDomain": "anthropic.com"
    },
    {
      "fullName": "Arthur Mensch",
      "companyDomain": "mistral.ai"
    },
    {
      "fullName": "Aidan Gomez",
      "companyDomain": "cohere.com"
    },
    {
      "fullName": "Clement Delangue",
      "companyDomain": "huggingface.co"
    }
  ],
  "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.