# Find The Contact Email For A Domain

**Use case:** 

Give the Actor bare domains and it returns the contact address for each one, together with the page it was found on and what kind of mailbox it is: a role address such as info@ or sales@, a personal name, or a no-reply sender you should not write to. One row per domain, even when a site refuses the request - the row then says why.

## 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"
    }
  ],
  "maxItems": 100,
  "maxPagesPerSite": 6,
  "crawlStrategy": "contact-pages",
  "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`).
