# Website Contact Scraper: Emails, Phone Numbers & Social Links (`techforce.global/website-contact-scraper-emails-phone-numbers-social-links`) Actor

Crawl any website and extract emails, phone numbers, and social media links. Auto-discovers contact, about, and team pages. One clean record per domain. JS-rendered pages supported.

- **URL**: https://apify.com/techforce.global/website-contact-scraper-emails-phone-numbers-social-links.md
- **Developed by:** [Techforce Global](https://apify.com/techforce.global) (community)
- **Categories:** Lead generation, Social media, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

$20.00 / 1,000 results

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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 Scraper: Emails, Phone Numbers & Social Links
 
The **Website Contact Scraper** by Techforce Global crawls any list of websites
and extracts **emails, phone numbers, and social media links** — automatically
discovering contact pages, about pages, and team pages for maximum coverage.
 
Built with **Playwright** (headless Chromium) for full JavaScript-rendered page
support. Returns **one clean, consolidated record per domain** — not scattered
per-page dumps — with a transparent summary of everything found.
 
---
 
### ⭐ Why This Actor
 
| Feature | Website Contact Scraper (Techforce) | Most Other Actors |
|---|---|---|
| JavaScript-rendered pages | ✅ Playwright (full JS support) | ⚠️ Cheerio only (HTML-based) |
| One record per domain | ✅ Clean consolidated output | ❌ Per-page data dumps |
| Auto-discovers contact pages | ✅ contact, about, team, footer | ⚠️ Varies |
| Summary count object | ✅ emails, phones, socials, pages | ❌ Not available |
| scannedPages transparency | ✅ Full list of crawled URLs | ❌ Not available |
| Configurable depth + concurrency | ✅ Yes | ⚠️ Limited |
| Bulk URL input | ✅ Multiple domains in one run | ✅ Yes |
| Pay per event | ✅ No monthly subscription | ⚠️ Varies |
 
---
 
### 🎯 Use Cases
 
#### B2B Lead Generation
Give it a list of prospect websites. Get back verified emails, phone numbers,
and social handles for every domain — ready for CRM import or outreach sequences.
 
#### CRM Enrichment
Feed your existing contact database through the actor to add missing email
addresses, phone numbers, and social profiles at scale.
 
#### Sales Prospecting
Extract contact details from competitor or partner websites automatically.
No manual searching required.
 
#### Recruiting and HR Outreach
Find contact emails and LinkedIn profiles from company websites for direct
recruiting outreach without going through job boards.
 
#### Marketing and Link Building
Collect social media handles and contact emails across a list of brands,
blogs, or publishers for partnership or link building campaigns.
 
#### Site Audit
Run your own domain through the actor to discover exposed or outdated
contact information that should be updated or removed.
 
---
 
### ⚙️ Input Configuration
 
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| `urls` | Array | ✅ Yes | — | List of website URLs to crawl |
| `maxPagesPerDomain` | Integer | ❌ No | `10` | Max sub-pages per domain (0 = unlimited) |
| `maxConcurrency` | Integer | ❌ No | `5` | Pages crawled in parallel |
| `proxyConfiguration` | Object | ❌ No | — | Apify Proxy settings |
 
#### 💡 Tips for Best Results
- **Start with `maxPagesPerDomain: 10`** — good balance of speed and coverage
- **Use 20+ pages** for large corporate sites with scattered contact info
- **Enable Apify Proxy with Residential IPs** for sites with bot protection
- Contact pages are always prioritised — `/contact`, `/about`, `/team`,
  `/impressum` are checked first regardless of your depth setting
 
#### Example Input
 
```json
{
  "urls": [
    { "url": "https://www.techcrunch.com" },
    { "url": "https://www.ycombinator.com" }
  ],
  "maxPagesPerDomain": 10,
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "US"
  }
}
````

***

### 📦 Output Schema

One record per input URL. Fields unavailable on a given site return as
empty arrays or objects.

| Field | Type | Description |
|---|---|---|
| `url` | String | The original input URL |
| `emails` | Array | All unique email addresses found across the domain |
| `phoneNumbers` | Array | All unique phone numbers found |
| `socialLinks` | Object | Social media links grouped by platform |
| `scannedPages` | Array | All sub-page URLs that were crawled |
| `status` | String | `success` or `no_data_found` |
| `summary` | Object | Count of emails, phones, social platforms, pages scanned |

#### Social Links Platforms Extracted

LinkedIn · Twitter/X · Facebook · Instagram · YouTube · TikTok ·
WhatsApp · Pinterest · GitHub · and more

#### Example Output

```json
{
  "url": "https://www.ycombinator.com",
  "emails": ["press@ycombinator.com", "jobs@ycombinator.com"],
  "phoneNumbers": ["+1 (650) 123-4567"],
  "socialLinks": {
    "twitter": ["https://twitter.com/ycombinator"],
    "linkedin": ["https://www.linkedin.com/company/y-combinator"],
    "facebook": ["https://www.facebook.com/ycombinator"]
  },
  "scannedPages": [
    "https://www.ycombinator.com",
    "https://www.ycombinator.com/contact",
    "https://www.ycombinator.com/about"
  ],
  "status": "success",
  "summary": {
    "emailCount": 2,
    "phoneCount": 1,
    "socialPlatforms": 3,
    "pagesScanned": 3
  }
}
```

***

### 🔧 How It Works

1. Accepts a list of URLs and launches a **Playwright crawler** with your
   concurrency settings
2. Visits each URL and waits for the page to **fully load** — including
   JavaScript-rendered content
3. Extracts emails, phone numbers, and social links from both raw HTML
   and visible page text
4. From the root page, discovers and prioritises **contact-related sub-pages**
   (`/contact`, `/about`, `/team`, `/impressum`)
5. Crawls sub-pages up to your `maxPagesPerDomain` limit
6. Saves **one consolidated, deduplicated record per domain** to the dataset

***

### ⚠️ Notes

- **JavaScript-heavy sites** are fully supported — Playwright renders
  the full page before extraction
- **Phone numbers** are extracted from visible page text — not raw HTML —
  for higher accuracy
- **Social links** are grouped by platform for easy filtering and CRM mapping
- Higher `maxPagesPerDomain` values increase coverage but also runtime and cost
- For sites with bot protection, enable **Apify Proxy with Residential IPs**

***

### 🔗 Integrations

Connect to any workflow via the Apify API:

- **n8n** — HTTP Request node → Apify API → push contacts to HubSpot,
  Google Sheets, or Slack
- **Zapier** — Native Apify integration available
- **Make (Integromat)** — Full Apify module available
- **Google Sheets** — Direct CSV export or API pipeline
- **HubSpot / Salesforce** — Import CSV or connect via n8n/Zapier

*This Actor integrates seamlessly into n8n workflows — no manual steps,
just end-to-end contact enrichment automation.*

***

### 💰 Pricing

**Pay per event — no monthly subscription.**
You pay only for what you extract.

***

### 🆘 Support

**Email:** bhavin.shah@techforceglobal.com

**Website:** https://techforceglobal.com

**[📅 Book a 15-min consultation](https://calendly.com/techforce-infotech-pvt-ltd/intro-meeting)**

***

### 🔗 You Might Also Like

- [Universal Event Scraper](https://apify.com/techforce.global/universal-event-scraper)
  — AllEvents, EventsEye, District & Meetup in one run
- [DesignRush Scraper](https://apify.com/techforce.global/designrush-scraper)
  — Agency profiles, reviews, services & contact
- [Gov.UK Business Scraper](https://apify.com/techforce.global/gov-uk-business-scraper)
  — UK Companies House + PSC beneficial ownership data

# Actor input Schema

## `urls` (type: `array`):

List of website URLs to crawl for contact information.

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

Maximum number of pages to crawl per starting URL.

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

Number of pages to crawl in parallel.

## `proxyConfiguration` (type: `object`):

Optional Apify proxy settings. Leave empty to crawl without a proxy.

## Actor input object example

```json
{
  "urls": [
    {
      "url": "https://www.apple.com/"
    }
  ],
  "maxPagesPerDomain": 10,
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (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 = {
    "urls": [
        {
            "url": "https://www.apple.com/"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("techforce.global/website-contact-scraper-emails-phone-numbers-social-links").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 = {
    "urls": [{ "url": "https://www.apple.com/" }],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("techforce.global/website-contact-scraper-emails-phone-numbers-social-links").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "urls": [
    {
      "url": "https://www.apple.com/"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call techforce.global/website-contact-scraper-emails-phone-numbers-social-links --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=techforce.global/website-contact-scraper-emails-phone-numbers-social-links",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Website Contact Scraper: Emails, Phone Numbers & Social Links",
        "description": "Crawl any website and extract emails, phone numbers, and social media links. Auto-discovers contact, about, and team pages. One clean record per domain. JS-rendered pages supported.",
        "version": "1.0",
        "x-build-id": "UCYNQIQsQ6daFp2IA"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/techforce.global~website-contact-scraper-emails-phone-numbers-social-links/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-techforce.global-website-contact-scraper-emails-phone-numbers-social-links",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/techforce.global~website-contact-scraper-emails-phone-numbers-social-links/runs": {
            "post": {
                "operationId": "runs-sync-techforce.global-website-contact-scraper-emails-phone-numbers-social-links",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/techforce.global~website-contact-scraper-emails-phone-numbers-social-links/run-sync": {
            "post": {
                "operationId": "run-sync-techforce.global-website-contact-scraper-emails-phone-numbers-social-links",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "urls"
                ],
                "properties": {
                    "urls": {
                        "title": "URLs to scrape",
                        "type": "array",
                        "description": "List of website URLs to crawl for contact information.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxPagesPerDomain": {
                        "title": "Max pages per domain",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Maximum number of pages to crawl per starting URL.",
                        "default": 10
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "Number of pages to crawl in parallel.",
                        "default": 5
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional Apify proxy settings. Leave empty to crawl without a proxy."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
