# Bulk Email Extractor - Scrape Emails from Any Website

**Use case:** 

Extract emails, phone numbers and 25+ social profiles from a list of websites in bulk. Built for lead generation and data enrichment. Export to CSV free.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.apify.com"
    },
    {
      "url": "https://www.crawlee.dev"
    }
  ],
  "maxPagesPerStartUrl": 5,
  "maxDepth": 1,
  "sameDomain": true,
  "allowCrossDomainRedirects": false,
  "mergeContacts": true,
  "proxyConfig": {
    "useApifyProxy": true
  },
  "useResidentialProxy": false,
  "companyNameMethod": "heuristics",
  "addressExtraction": true,
  "browserMode": "off",
  "useSitemap": false
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "addresses": {
    "label": "Addresses",
    "format": "array"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "linkedIns": {
    "label": "LinkedIn",
    "format": "array"
  },
  "twitters": {
    "label": "Twitter",
    "format": "array"
  },
  "instagrams": {
    "label": "Instagram",
    "format": "array"
  },
  "facebooks": {
    "label": "Facebook",
    "format": "array"
  },
  "youtubes": {
    "label": "YouTube",
    "format": "array"
  },
  "tiktoks": {
    "label": "TikTok",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Contact Extractor](https://apify.com/betterdevsscrape/contact-details-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/betterdevsscrape/contact-details-extractor) to learn more, explore other use cases, and run it yourself.