# Website Contacts Scraper (`burbn/website-contacts-scraper`) Actor

Find verified emails, phone numbers, and social media profile links from any URL or domain in real-time. Includes domain-matching filters and source tracking. Fast, lightweight, and cost-effective contact discovery tool!

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

## Pricing

from $5.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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 Contacts Scraper

**Fast and reliable extraction of emails, phone numbers, and social media links from any website domain in real-time.**

Extract contact information including **Facebook, TikTok, Instagram, Twitter/X, LinkedIn, YouTube, Pinterest, GitHub, and Snapchat** profiles from any website.

---

### ✨ Key Features

- 📧 **Email Extraction** — Find all email addresses associated with a domain
- 📞 **Phone Number Discovery** — Extract phone numbers from websites
- 🔗 **Social Media Links** — Get Facebook, Instagram, TikTok, Twitter/X, LinkedIn, YouTube, Pinterest, GitHub, Snapchat
- 📩 **Domain Email Filtering** — Option to only return emails matching the queried domain
- 📊 **Source Tracking** — See exactly where each email and phone number was found
- ⚡ **Real-Time Results** — Fast extraction with no delays

---

### 📥 Input Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `url` | String | ✅ Yes | `quora.com` | Website domain or URL to scrape (e.g., `quora.com` or `https://github.com`). |
| `match_email_domain` | Boolean | No | `false` | Only return emails matching the queried domain |

#### Example Input

```json
{
  "url": "quora.com",
  "match_email_domain": false
}
````

***

### 📤 Output Format

Each result in the dataset contains:

```json
{
  "domain": "quora.com",
  "query": "https://www.quora.com/",
  "emails": ["info@quora.com", "support@quora.com"],
  "emailDetails": [
    {
      "email": "info@quora.com",
      "sources": ["https://www.quora.com/contact"]
    }
  ],
  "totalEmails": 2,
  "phoneNumbers": ["111111111"],
  "phoneNumberDetails": [
    {
      "phoneNumber": "111111111",
      "sources": ["https://www.quora.com/about"]
    }
  ],
  "totalPhoneNumbers": 1,
  "facebook": "https://www.facebook.com/quora",
  "instagram": "https://www.instagram.com/quora_the_best",
  "tiktok": null,
  "snapchat": null,
  "twitter": "https://twitter.com/quora",
  "linkedin": "https://www.linkedin.com/company/quora",
  "github": "https://github.com/quora",
  "youtube": "https://www.youtube.com/user/Quora",
  "pinterest": "https://www.pinterest.com/quora",
  "status": "success"
}
```

***

### 📊 Output Fields

| Field | Type | Description |
|-------|------|-------------|
| `domain` | String | The scraped domain |
| `query` | String | The original query URL |
| `emails` | Array | List of email addresses found |
| `emailDetails` | Array | Emails with source URLs |
| `totalEmails` | Number | Count of emails found |
| `phoneNumbers` | Array | List of phone numbers found |
| `phoneNumberDetails` | Array | Phone numbers with source URLs |
| `totalPhoneNumbers` | Number | Count of phone numbers found |
| `facebook` | String | Facebook profile URL |
| `instagram` | String | Instagram profile URL |
| `tiktok` | String | TikTok profile URL |
| `snapchat` | String | Snapchat profile URL |
| `twitter` | String | Twitter/X profile URL |
| `linkedin` | String | LinkedIn profile URL |
| `github` | String | GitHub profile URL |
| `youtube` | String | YouTube channel URL |
| `pinterest` | String | Pinterest profile URL |
| `status` | String | Operation status (success/failed/error) |

***

### 🎯 Use Cases

- **Lead Generation** — Build prospect lists with verified contact information
- **Sales Prospecting** — Find decision-maker emails and company social profiles
- **Business Intelligence** — Map company digital footprints across social platforms
- **Competitor Analysis** — Discover competitors' contact channels and social presence
- **Marketing Research** — Identify brand social media accounts for outreach
- **Data Enrichment** — Enhance CRM records with website contact data
- **Recruitment** — Find company HR contacts and professional social profiles
- **PR & Media Outreach** — Discover press contact emails and media channels

***

### 💡 Tips for Best Results

1. **Use root domains** — Enter `example.com` instead of `https://www.example.com/page`
2. **Enable domain matching** — Set `match_email_domain` to `true` to filter out unrelated emails

***

### ⚠️ Limitations

- Processes 1 URL/domain per actor run
- Results depend on publicly available contact information on the target website
- Some domains may return fewer results depending on their content structure

***

### 🔗 Integrations

Connect the Website Contacts Scraper with your favorite tools:

- **Google Sheets** — Export contacts directly to spreadsheets
- **Zapier** — Automate workflows with scraped contact data
- **Make (Integromat)** — Build complex automation pipelines
- **REST API** — Access results programmatically via the Apify API
- **Webhooks** — Get notified when scraping is complete
- **CRM Integration** — Feed contacts directly into Salesforce, HubSpot, etc.

***

### 🏷️ Tags

`email finder`, `email search`, `email lookup`, `find email address`, `email scraper`, `email extractor`, `lead generation`, `b2b email finder`, `sales prospecting`, `email discovery`, `contact finder`, `email hunter`, `bulk email search`, `company email finder`, `gmail finder`, `email by name`, `email by company`, `recruiting emails`, `business email search`, `email database`, `email leads`, `outreach tool`, `crm enrichment`, `email prospecting`, `apify actor`

***

### 🚀 Get Started Now

**Ready to extract emails, phone numbers, and social media links?**

1. 🌐 Enter your target **Website Domain / URL** (e.g., `quora.com` or `https://github.com`)
2. 📩 Optionally configure **Match Email Domain** option
3. ▶️ Click **Start** to run the actor
4. 📥 Download your data in JSON, CSV, Excel, or HTML format
5. Click ["Try for free"](https://apify.com?fpr=free-credits) to test the actor

**⭐ If this actor helps your workflow, please give it a star!**

### 📬 Support

If you encounter any issues or have feature requests, please reach out through the **Issues** tab on this actor's page. We actively maintain and improve this scraper based on user feedback.

# Actor input Schema

## `url` (type: `string`):

Enter a website domain or URL to scrape contacts from (e.g. 'quora.com' or 'github.com').

## `match_email_domain` (type: `boolean`):

Only return emails that match the same domain as the query. For example, if you query 'github.com', only emails ending with '@github.com' will be returned. Useful for filtering out unrelated emails.

## Actor input object example

```json
{
  "url": "quora.com",
  "match_email_domain": false
}
```

# Actor output Schema

## `website_contacts` (type: `string`):

Open the dataset view with all scraped website contact details.

# 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 = {
    "url": "quora.com"
};

// Run the Actor and wait for it to finish
const run = await client.actor("burbn/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 = { "url": "quora.com" }

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

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=burbn/website-contacts-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Website Contacts Scraper",
        "description": "Find verified emails, phone numbers, and social media profile links from any URL or domain in real-time. Includes domain-matching filters and source tracking. Fast, lightweight, and cost-effective contact discovery tool!",
        "version": "1.0",
        "x-build-id": "Oz9DNdI7JXU30J886"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/burbn~website-contacts-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-burbn-website-contacts-scraper",
                "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/burbn~website-contacts-scraper/runs": {
            "post": {
                "operationId": "runs-sync-burbn-website-contacts-scraper",
                "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/burbn~website-contacts-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-burbn-website-contacts-scraper",
                "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": [
                    "url"
                ],
                "properties": {
                    "url": {
                        "title": "🌐 Website Domain / URL",
                        "minLength": 1,
                        "type": "string",
                        "description": "Enter a website domain or URL to scrape contacts from (e.g. 'quora.com' or 'github.com').",
                        "default": "quora.com"
                    },
                    "match_email_domain": {
                        "title": "📩 Match Email Domain",
                        "type": "boolean",
                        "description": "Only return emails that match the same domain as the query. For example, if you query 'github.com', only emails ending with '@github.com' will be returned. Useful for filtering out unrelated emails.",
                        "default": false
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
