# Website Contact & Email Scraper: Emails, Phones, Socials & Tech (`tindacloud/website-contact-scraper`) Actor

Extract emails, phone numbers, social media profiles, addresses and technology stack from any list of websites. Crawls contact, about and team pages, decodes hidden emails, one clean row per domain for lead generation.

- **URL**: https://apify.com/tindacloud/website-contact-scraper.md
- **Developed by:** [Seungki Min](https://apify.com/tindacloud) (community)
- **Categories:** Lead generation, Automation, Marketing
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 websites

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

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 examples already wired to this Actor's own input schema, see the [API](#api) section below.

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`).

# README

## Website Contact & Email Scraper: Emails, Phones, Socials & Tech

Turn a list of websites into **leads**. For each domain this actor visits the homepage and the pages most likely to hold contact details (contact, about, team, imprint, support) and returns **one clean row per website**:

- emails and phone numbers
- social media profiles
- addresses
- contact page URL
- the website's **technology stack**

### Why this scraper

- **Priced per website, not per page.** Up to 50 pages per domain for the same price, and websites that can't be loaded are not charged.
- **Finds the hard-to-get contacts:**
  - Cloudflare-protected emails (`data-cfemail`) are decoded
  - "name \[at] domain \[dot] com" style obfuscation is reversed
  - schema.org phone numbers and addresses are read
- **Clean, validated data:**
  - phone numbers are checked with libphonenumber and formatted internationally (E.164 + country)
  - junk emails (images, placeholders, sentry, noreply) are removed
  - company-domain emails come first
- **Social profiles:** LinkedIn, X/Twitter, Facebook, Instagram, YouTube, TikTok, GitHub, Pinterest.
- **Technology signals for sales targeting:** Shopify, WordPress, WooCommerce, Wix, Squarespace, Webflow, HubSpot, Pardot, Marketo, Google Analytics / Tag Manager, Meta Pixel, Intercom, Zendesk, Klaviyo, Mailchimp, Stripe, Calendly and more.
- **Fast, no browser.** 12 websites in about 20 seconds in testing.

### Input example

```json
{
  "startUrls": ["patagonia.com", "https://www.glossier.com", "basecamp.com"],
  "maxPagesPerDomain": 8,
  "defaultPhoneCountry": "US",
  "skipDomainsWithoutContacts": true
}
```

### Output example

```json
{
  "domain": "patagonia.com",
  "url": "https://www.patagonia.com/",
  "companyName": "Patagonia Outdoor Clothing & Gear",
  "description": "Patagonia is a designer of outdoor clothing and gear for the silent sports: climbing, surfing, skiing and snowboarding, ",
  "emails": [
    "customer_service@patagonia.com",
    "directsales.europe@patagonia.com",
    "customerservice.japan@patagonia.com"
  ],
  "emailDetails": [
    {
      "email": "customer_service@patagonia.com",
      "foundOn": "https://www.patagonia.com/shop/mens",
      "isCompanyDomain": true
    },
    {
      "email": "directsales.europe@patagonia.com",
      "foundOn": "https://www.patagonia.com/shop/mens",
      "isCompanyDomain": true
    }
  ],
  "phones": [
    {
      "number": "+1 800 638 6464",
      "e164": "+18006386464",
      "country": "US",
      "source": "tel-link",
      "foundOn": "https://www.patagonia.com/home/"
    },
    {
      "number": "+33 4 50 88 44 92",
      "e164": "+33450884492",
      "country": "FR",
      "source": "text",
      "foundOn": "https://www.patagonia.com/shop/mens"
    }
  ],
  "socialProfiles": {
    "facebook": "https://www.facebook.com/PATAGONIA/",
    "instagram": "https://www.instagram.com/patagonia/",
    "linkedin": "https://www.linkedin.com/company/665858/"
  },
  "addresses": [],
  "contactPageUrl": null,
  "technologies": [
    "Google Tag Manager",
    "Klaviyo",
    "Cloudflare"
  ],
  "language": "en-US",
  "pagesCrawled": 8
}
```

### Use cases

- **B2B lead generation:** enrich domain lists from Google Maps, directories or CRMs with emails, phones and socials.
- **Sales targeting:** filter prospects by technology (e.g. Shopify stores using Klaviyo).
- **Agencies & freelancers:** build outreach lists for local businesses.
- **Data hygiene:** refresh contact details of existing accounts.

### Pricing

Pay per website returned, however many pages are crawled. Unreachable websites are free, and *Skip websites without contacts* avoids paying for empty results.

### Notes

- Only publicly published contact information is collected. Use it in compliance with applicable laws (e.g. GDPR, CAN-SPAM) and each site's terms.
- Websites that require JavaScript to render contact details may return fewer results.

### Related Actors

Other scrapers from the same maker, built the same way — no browser where it isn't needed, one flat price per result:

- [LinkedIn Company Scraper](https://apify.com/tindacloud/linkedin-company-scraper)
- [Google Maps Scraper with Emails](https://apify.com/tindacloud/google-maps-contacts-scraper)
- [Shopify Store Products Scraper](https://apify.com/tindacloud/shopify-products-scraper)

# Actor input Schema

## `startUrls` (type: `array`):

Domains or URLs, e.g. “acme.com” or “https://www.acme.com”. One result per website.

## `maxPagesPerDomain` (type: `integer`):

The homepage plus contact, about, team and imprint pages are visited first.

## `defaultPhoneCountry` (type: `string`):

Used to understand local phone numbers without a country code (two-letter code, e.g. US, GB, DE, AU).

## `skipDomainsWithoutContacts` (type: `boolean`):

Don't return (or charge for) websites where no email, phone or social profile was found.

## `maxResults` (type: `integer`):

Stop after this many websites. You are charged per website.

## `proxy` (type: `object`):

Websites are fetched directly first; the proxy is used only when a site blocks the request.

## Actor input object example

```json
{
  "startUrls": [
    "stripe.com",
    "basecamp.com"
  ],
  "maxPagesPerDomain": 8,
  "defaultPhoneCountry": "US",
  "skipDomainsWithoutContacts": false,
  "maxResults": 1000,
  "proxy": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `websites` (type: `string`):

All websites with contacts in a table view.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        "stripe.com",
        "basecamp.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("tindacloud/website-contact-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "startUrls": [
        "stripe.com",
        "basecamp.com",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("tindacloud/website-contact-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    "stripe.com",
    "basecamp.com"
  ]
}' |
apify call tindacloud/website-contact-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,tindacloud/website-contact-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/OBOZGaZRCgd0huMke/builds/z3gg9g2FInBHqmXQ5/openapi.json
