# Website Contact Scraper | Contacts & Social Links (`cliqtomedia/website-contacts-scraper`) Actor

Website Contacts & Social Links Scraper finds public emails, phone numbers and organization social links on up to 100 website URLs with bounded same-site page checks and clear result status.

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

## Pricing

from $0.60 / 1,000 website results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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 Scraper | Contacts & Social Links

Website Contact Scraper finds public email addresses, phone numbers and
organization social links on up to 100 websites. It checks the home page and a
small set of likely contact pages, then returns one result for each accepted
website.

### What you get

- Public emails and phone numbers with the page where each value was seen.
- Profile-like organization links for common social networks. The Actor does
  not open those links or verify who owns them.
- One row per accepted website with `status`, `scanCompleteness`,
  `pagesScanned`, `pagesLimit`, `stopReason` and a plain-English `statusInfo`.
- A `RUN_SUMMARY` record with status/completeness counts, pages, requests,
  bytes, retries and charge reconciliation.

`status` describes the finding. `scanCompleteness` describes the bounded scan:
`COMPLETE`, `PARTIAL` or `NOT_STARTED`. For example, a row can be
`CONTACTS_FOUND` with `PARTIAL` completeness when the Actor found contacts but
stopped at the five-page limit. `LIMIT_REACHED` means no useful contact or
social result was found before a page, time or response-size limit stopped more
work. It is not proof that a website has no contacts.

### How it works

1. Add up to 100 public website homepages or bare domains.
2. The Actor normalizes each site and follows safe same-site redirects.
3. It checks the home page and ranked contact, about, team, legal, support and
   sitemap-derived pages within the selected limits.
4. It returns public-page observations. Email addresses are not verified or
   enriched, and social destinations are not fetched.

### Limits

| Setting | Default | Range |
|---|---:|---:|
| Websites per run | — | 1–100 |
| Pages per website | 5 | 1–10 |
| Parallel websites | 5 | 1–10 |
| Website time limit | 30 seconds | 10–90 seconds |
| Maximum page size | 2 MiB | 256 KiB–4 MiB |
| robots.txt | On | On or off |

The page limit includes the home page. If it is reached, `statusInfo` says that
more candidate pages were not checked. A successful empty result means no
accepted value was found on the readable pages that were checked; it does not
claim whole-site completeness. JavaScript-only content, login walls, CAPTCHAs
and sites that block automated requests may produce partial or technical
results.

### Safety and privacy

Local, loopback, private-network and unsafe redirect destinations are rejected.
The Actor does not submit forms, log in, guess arbitrary paths or request
social profiles. Output keeps public contact observations and bounded evidence;
credentials and sensitive request data are not collected.

### Pricing

The price is USD 0.00060 per `website-result`. One event covers one terminal
website row after at least one usable public page is read, including a useful
row that is marked `PARTIAL` because the scan stopped early. Invalid inputs and
sites that cannot produce a usable public page are not charged this event.

# Changelog

This Actor's version history is a separate document: https://apify.com/cliqtomedia/website-contacts-scraper/changelog.md

# Actor input Schema

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

Add bare domains or public HTTP/HTTPS homepages. The Actor returns one result for each accepted website.

## `maxPagesPerSite` (type: `integer`):

Check up to this many same-site pages, including the home page. If the cap stops the scan, the row explains that more pages were not checked; status and scanCompleteness remain separate.

## `maxConcurrency` (type: `integer`):

Maximum number of websites scanned at the same time.

## `siteTimeoutSeconds` (type: `integer`):

Time limit for one website, including its selected pages.

## `maxBytesPerPage` (type: `integer`):

Stop reading a page after this size limit. The result explains when this prevents complete page extraction.

## `respectRobotsTxt` (type: `boolean`):

Check robots.txt before fetching selected pages.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://example.com"
    }
  ],
  "maxPagesPerSite": 5,
  "maxConcurrency": 5,
  "siteTimeoutSeconds": 30,
  "maxBytesPerPage": 2097152,
  "respectRobotsTxt": true
}
```

# Actor output Schema

## `results` (type: `string`):

One sanitized terminal result per accepted normalized website, with Dataset views available.

## `runSummary` (type: `string`):

Sanitized status, resource and reconciled website-result charge totals.

# 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": [
        {
            "url": "https://example.com"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("cliqtomedia/website-contacts-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": [{ "url": "https://example.com" }] }

# Run the Actor and wait for it to finish
run = client.actor("cliqtomedia/website-contacts-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": [
    {
      "url": "https://example.com"
    }
  ]
}' |
apify call cliqtomedia/website-contacts-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,cliqtomedia/website-contacts-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/qHLynSYMhVbZpvHCl/builds/5FGtUz4MdRcOCufl9/openapi.json
