# Bulk website email extraction for partner research

**Use case:** 

Crawl multiple company websites to collect public emails, phone numbers, social profiles, and contact/about page URLs for outreach research.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.apify.com"
    },
    {
      "url": "https://www.crawlee.dev"
    },
    {
      "url": "https://www.actorhunt.com"
    }
  ],
  "maxPagesPerSite": 10,
  "maxDepth": 2,
  "sameDomainOnly": true,
  "requestTimeoutSecs": 20
}
```

## Output

```json
{
  "startUrl": {
    "label": "Start URL",
    "format": "link"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "normalizedDomain": {
    "label": "Normalized domain",
    "format": "text"
  },
  "emails": {
    "label": "Emails",
    "format": "text"
  },
  "phones": {
    "label": "Phones",
    "format": "text"
  },
  "socialLinks": {
    "label": "Social links",
    "format": "text"
  },
  "contactPageUrls": {
    "label": "Contact pages",
    "format": "text"
  },
  "pagesCrawled": {
    "label": "Pages crawled",
    "format": "number"
  },
  "maxDepthReached": {
    "label": "Max depth",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "errors": {
    "label": "Errors",
    "format": "text"
  },
  "crawledAt": {
    "label": "Crawled at",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Emails Scraper](https://apify.com/automation-lab/website-emails-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/website-emails-scraper) to learn more, explore other use cases, and run it yourself.