# Find Anyone's Business Email by Name & Company

**Use case:** 

Look up anyone's business email from full name + company domain. MX-verified against live DNS, email provider detected, confidence-scored. Free, no API key.

## Input

```json
{
  "people": [
    {
      "fullName": "Satya Nadella",
      "companyDomain": "microsoft.com"
    },
    {
      "fullName": "Sundar Pichai",
      "companyDomain": "google.com"
    },
    {
      "fullName": "Andy Jassy",
      "companyDomain": "amazon.com"
    },
    {
      "fullName": "Marc Benioff",
      "companyDomain": "salesforce.com"
    },
    {
      "fullName": "Shantanu Narayen",
      "companyDomain": "adobe.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.