# Deep Crawl A Website For Every Contact

**Use case:** 

For large sites where the contacts sit on team, office or location pages rather than on one contact page. This opens up to twenty-five same-site pages in link order instead of guessing at the best six, which is slower and finds more.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://hubspot.com"
    },
    {
      "url": "https://shopify.com"
    },
    {
      "url": "https://zendesk.com"
    }
  ],
  "maxItems": 50,
  "maxPagesPerSite": 25,
  "crawlStrategy": "all-links",
  "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`).
