# Homepage Only Email Scraper

**Use case:** 

One page per site, nothing else. The cheapest and fastest mode: use it when your list is long, the sites are small, and you would rather run ten thousand domains than dig into a hundred.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://stripe.com"
    },
    {
      "url": "https://notion.so"
    },
    {
      "url": "https://figma.com"
    },
    {
      "url": "https://zapier.com"
    },
    {
      "url": "https://hubspot.com"
    },
    {
      "url": "https://canva.com"
    },
    {
      "url": "https://shopify.com"
    },
    {
      "url": "https://squarespace.com"
    },
    {
      "url": "https://mailchimp.com"
    },
    {
      "url": "https://intercom.com"
    },
    {
      "url": "https://allbirds.com"
    },
    {
      "url": "https://gymshark.com"
    },
    {
      "url": "https://ruggable.com"
    },
    {
      "url": "https://bombas.com"
    },
    {
      "url": "https://brooklinen.com"
    },
    {
      "url": "https://www.austinfilm.org"
    },
    {
      "url": "https://jeffreysofaustin.com"
    },
    {
      "url": "https://www.yarddog.com"
    },
    {
      "url": "https://www.saltlickbbq.com"
    },
    {
      "url": "https://www.franklinbbq.com"
    }
  ],
  "maxItems": 200,
  "maxPagesPerSite": 1,
  "crawlStrategy": "homepage-only",
  "useSitemap": true,
  "guessContactPaths": true,
  "sameDomain": true,
  "followLinkInBioPages": true,
  "scrapeIframes": false,
  "checkMx": true,
  "defaultCountry": "US",
  "onlyWithEmail": false,
  "onlyWithPhone": false,
  "onlyWithContacts": false,
  "onlyWithSocialProfile": false,
  "skipUnreachableSites": false,
  "onlyDeliverableEmail": false,
  "onlySameDomainEmail": false,
  "skipFreeMailboxes": false,
  "emailKinds": [],
  "domainContains": [],
  "textContains": [],
  "excludeContains": [],
  "onlyChanged": false,
  "emitUnchanged": false,
  "monitorStoreName": "website-contacts-state",
  "compactOutput": false,
  "concurrency": 6,
  "requestTimeoutSecs": 20,
  "urlField": "website"
}
```

## Output

```json
{
  "domain": {
    "label": "Domain",
    "format": "string"
  },
  "url": {
    "label": "Url",
    "format": "string"
  },
  "primary_email": {
    "label": "Primary email",
    "format": "string"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "email_count": {
    "label": "Email count",
    "format": "integer"
  },
  "primary_phone": {
    "label": "Primary phone",
    "format": "string"
  },
  "phones": {
    "label": "Phones",
    "format": "array"
  },
  "company_name": {
    "label": "Company name",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "country_code": {
    "label": "Country code",
    "format": "string"
  },
  "linkedin": {
    "label": "Linkedin",
    "format": "array"
  },
  "facebook": {
    "label": "Facebook",
    "format": "array"
  },
  "instagram": {
    "label": "Instagram",
    "format": "array"
  },
  "social_count": {
    "label": "Social count",
    "format": "integer"
  },
  "pages_crawled": {
    "label": "Pages crawled",
    "format": "integer"
  },
  "reachable": {
    "label": "Reachable",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Impressum & Imprint Contact Scraper - Emails, Phones, Socials](https://apify.com/snow_leo_data/website-contact-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/snow_leo_data/website-contact-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/snow_leo_data/website-contact-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
