# Extract emails from specific website contact pages

**Use case:** 

Extract public emails, phone numbers, and social profile links from selected agency contact and about pages.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.apify.com/contact"
    }
  ],
  "maxPagesPerSite": 3,
  "maxDepth": 0,
  "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.