# Website Email Extractor

**Use case:** 

Scrape and verify email addresses from company websites: personal vs role inboxes, MX-checked, with a deep scan of imprint and legal pages. JSON or CSV.

## Input

```json
{
  "preset": "auto",
  "confidenceMode": "balanced",
  "urls": [
    "https://n8n.io",
    "https://www.jimdo.com",
    "https://www.contentful.com"
  ],
  "nameSuffix": "",
  "discoveryCountry": "US",
  "maxResultsPerQuery": 50,
  "maxDiscoveredDomains": 1000,
  "maxPagesPerDomain": 5,
  "includeNames": true,
  "includeSocials": true,
  "deepScan": true,
  "verifyEmails": true,
  "monitorStateKey": "",
  "autoFilter": "none",
  "outputProfile": "full",
  "crmFormat": "generic-json",
  "notionArchiveProfile": "summary",
  "deliverTopN": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "Website URL",
    "format": "string"
  },
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "leadScore": {
    "label": "Lead Score",
    "format": "integer"
  },
  "personalEmails": {
    "label": "Personal Emails",
    "format": "array"
  },
  "genericEmails": {
    "label": "Generic Emails",
    "format": "array"
  },
  "verifiedEmails": {
    "label": "Verified Emails",
    "format": "array"
  },
  "emailSources": {
    "label": "Email Sources",
    "format": "array"
  },
  "phones": {
    "label": "Phone Numbers",
    "format": "array"
  },
  "contacts": {
    "label": "Team Members",
    "format": "array"
  },
  "socialLinks": {
    "label": "Social Links",
    "format": "object"
  },
  "addresses": {
    "label": "Addresses",
    "format": "array"
  },
  "businessHours": {
    "label": "Business Hours",
    "format": "array"
  },
  "companyMeta": {
    "label": "Company Metadata",
    "format": "object"
  },
  "companyType": {
    "label": "Company Type",
    "format": "string"
  },
  "pagesScraped": {
    "label": "Pages Scraped",
    "format": "integer"
  },
  "scrapeError": {
    "label": "Scrape Error",
    "format": "string"
  },
  "jsWarning": {
    "label": "JS Warning",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Lead Intelligence — Find the Right Person, Verified](https://apify.com/ryanclinton/website-contact-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/website-contact-scraper) to learn more, explore other use cases, and run it yourself.