# Find Corporate Emails And Skip Free Mailboxes

**Use case:** 

Drops gmail.com, outlook.com, gmx.de and fifty other consumer hosts, and drops addresses hosted on somebody else's domain - the agency mailbox, the marketplace, the web designer's own address in the footer. What is left is the company's own mail.

## 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"
    }
  ],
  "maxItems": 100,
  "maxPagesPerSite": 6,
  "crawlStrategy": "contact-pages",
  "useSitemap": true,
  "guessContactPaths": true,
  "sameDomain": true,
  "followLinkInBioPages": true,
  "scrapeIframes": false,
  "checkMx": true,
  "defaultCountry": "US",
  "onlyWithEmail": true,
  "onlyWithPhone": false,
  "onlyWithContacts": false,
  "onlyWithSocialProfile": false,
  "skipUnreachableSites": false,
  "onlyDeliverableEmail": false,
  "onlySameDomainEmail": true,
  "skipFreeMailboxes": true,
  "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`).
