# Extract contacts from a domain list

**Use case:** 

Give it a list of company domains and it reads each company's own website for the contact details they publish: email addresses, phone numbers, social profiles, postal address and company identifiers such as VAT numbers. Respects robots.txt, reads only first-party pages, uses no third-party database. Enrich a prospect list without buying one.

## Input

```json
{
  "domains": [
    "stripe.com",
    "shopify.com",
    "hubspot.com"
  ],
  "maxPagesPerSite": 12,
  "concurrency": 5,
  "respectRobotsTxt": true,
  "extractEmails": true,
  "extractPhones": true,
  "extractSocialProfiles": true,
  "extractTechnologies": true,
  "extractIdentifiers": true,
  "maxSites": 500
}
```

## Output

```json
{
  "domain": {
    "label": "Domain"
  },
  "title": {
    "label": "Site title"
  },
  "primaryEmail": {
    "label": "Email"
  },
  "primaryPhone": {
    "label": "Phone"
  },
  "linkedin": {
    "label": "LinkedIn"
  },
  "emailCount": {
    "label": "Emails"
  },
  "technologyCount": {
    "label": "Tech"
  },
  "technologies": {
    "label": "Stack"
  },
  "vatNumbers": {
    "label": "VAT"
  },
  "pagesCrawled": {
    "label": "Pages"
  },
  "error": {
    "label": "Error"
  }
}
```

## About this Actor

This example demonstrates how to use [Website Contact & Tech Extractor — Emails, Phones, Stack](https://apify.com/dalbian/website-contact-extractor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dalbian/website-contact-extractor.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/dalbian/website-contact-extractor.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`).
