# Website Contact & Social Finder — $0.20/1K (`scrapesignal_labs/website-contact-social-finder`) Actor

Turn company websites into clean contact records with public emails, phones, social profiles, contact forms, addresses, and source pages.

- **URL**: https://apify.com/scrapesignal\_labs/website-contact-social-finder.md
- **Developed by:** [ScrapeSignal Labs](https://apify.com/scrapesignal_labs) (community)
- **Categories:** Lead generation, Automation, SEO tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.20 / 1,000 website analyses

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?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Website Contact & Social Finder — $0.20 per 1,000 websites

Turn a list of public business websites into one clean enrichment row per domain. The Actor checks the homepage and a small, controlled set of likely contact pages, then consolidates public contact signals with their source pages.

### Output

- Public email addresses and phone numbers
- LinkedIn, Facebook, Instagram, X/Twitter, YouTube, TikTok, and GitHub profiles
- Published address blocks and contact-form URLs
- Pages inspected, status, and any terminal fetch error
- One deduplicated row per submitted website

### Example input

```json
{
  "websites": ["apify.com", "github.com"],
  "maxPagesPerSite": 5,
  "probeCommonPaths": true,
  "includePhones": true,
  "includeAddresses": true,
  "maxConcurrency": 5
}
```

### Pricing

The launch price is **$0.0002 per analyzed website** ($0.20 per 1,000), plus a **$0.00005 start event**. Apify platform usage is paid separately by the user. Every submitted domain produces a transparent success or error row.

### Responsible use and limits

Use the Actor only on public pages you are allowed to access. Public contact information can still be personal data: follow privacy, anti-spam, marketing, and data-protection laws before storing or contacting anyone. The Actor does not bypass logins, CAPTCHAs, robots restrictions, or access controls and does not validate that an email inbox or phone number is active. JavaScript-only contact data may not appear in the plain HTML response.

# Actor input Schema

## `websites` (type: `array`):

Add one public website per line. Bare domains are normalized to HTTPS.

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

Limit the homepage plus likely contact, about, team, support, or imprint pages inspected per domain.

## `probeCommonPaths` (type: `boolean`):

Try common paths such as /contact and /about even when they are not linked from the homepage.

## `includePhones` (type: `boolean`):

Extract public telephone links and plausible visible phone-number patterns.

## `includeAddresses` (type: `boolean`):

Capture text published inside HTML address elements.

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

Limit how many separate websites are analyzed at the same time.

## `timeoutSeconds` (type: `integer`):

Stop waiting for an individual public page after this many seconds.

## Actor input object example

```json
{
  "websites": [
    "apify.com",
    "github.com"
  ],
  "maxPagesPerSite": 5,
  "probeCommonPaths": true,
  "includePhones": true,
  "includeAddresses": true,
  "maxConcurrency": 5,
  "timeoutSeconds": 15
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapesignal_labs/website-contact-social-finder").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("scrapesignal_labs/website-contact-social-finder").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 '{}' |
apify call scrapesignal_labs/website-contact-social-finder --silent --output-dataset

```

## MCP server setup

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

```

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/wkpnBCKOQiN9nUGBn/builds/jO1V35IfVduopafBN/openapi.json
