# Company Domain Email Finder

**Use case:** 

Turn a company website URL into a domain, then find likely business emails for a named person.

## Input

```json
{
  "people": [
    {
      "fullName": "Ada Lovelace",
      "companyDomainOrWebsite": "https://www.example.com/about"
    }
  ]
}
```

## Output

```json
{
  "fullName": {
    "label": "Full name",
    "format": "string"
  },
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "domain": {
    "label": "Company domain",
    "format": "string"
  },
  "email": {
    "label": "Best email candidate",
    "format": "string"
  },
  "pattern": {
    "label": "Applied pattern",
    "format": "string"
  },
  "confidence": {
    "label": "Confidence",
    "format": "string"
  },
  "domainMail.mxStatus": {
    "label": "MX status",
    "format": "string"
  },
  "domainMail.provider": {
    "label": "Mail provider",
    "format": "string"
  },
  "domainMail.consumerProvider": {
    "label": "Consumer provider",
    "format": "boolean"
  },
  "alternatives": {
    "label": "Alternative candidates",
    "format": "array"
  },
  "provenance": {
    "label": "Data provenance",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed at",
    "format": "string"
  }
}
```

## About this Actor

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