# Website Contact Leads & Verified Emails (`mrdoe/website-contact-leads`) Actor

Turn company websites into structured B2B leads. Extract names, job titles, departments, business emails, phone numbers, company details, and contact-page data, with optional email verification and firmographic enrichment.

- **URL**: https://apify.com/mrdoe/website-contact-leads.md
- **Developed by:** [MrDoe](https://apify.com/mrdoe) (community)
- **Categories:** AI, Agents, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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 Leads + Verified Emails - Extract Contacts From Any Company Site

Crawl any list of company websites and turn them into structured contact leads - names, titles, and emails, backed up by emails and phone numbers scraped directly from each site's contact/about pages.

### What does this Actor do?

Give it one or more website URLs and it returns one structured record per contact found, including:

- **Company details** - name, website, domain, description
- **Contact email** - named contacts with job title, department, confidence score, falling back to emails scraped directly from the site if none are found
- **Phone number** - scraped from the site's contact/about pages
- **Optional email verification** - deliverability check
- **Optional firmographics** - industry data

Nothing is guessed or invented - fields with no available data are returned as `null`.

### How it works

1. Fetches each website's homepage plus up to **Max contact/about pages per site** internal pages (contact, about, team, etc.), scraping `mailto:`/`tel:` links and visible emails/phone numbers.
2. Looks up the domain for named contacts and their emails - the richest source of leads per site.
3. If none are found for a domain, falls back to the emails scraped directly from the site.
4. Optionally verifies each email's deliverability and enriches company firmographics, if enabled.

This Actor is HTTP-only (no headless browser), so it's fast and lightweight even across many sites.

### How to use

1. [Sign up](https://apify.com/sign-up) for a free Apify account.
2. Open this Actor and enter one or more **Website URLs**.
3. Set **Max leads per company** and **Max total leads** as needed.
4. Click **Start** and export results as JSON, CSV, Excel, or via API.

### Output

Each dataset item follows a standard lead shape shared across this Actor family:

| Field | Description |
|---|---|
| `companyName`, `companyUrl`, `domain`, `companyWebsite`, `description` | Company identity, from the site itself |
| `contactName`, `firstName`, `lastName`, `jobTitle`, `department`, `seniority` | Named contact (`null` if only an on-site email was found) |
| `email`, `emailType`, `emailConfidence`, `emailVerificationStatus`, `emailSources` | Contact email data |
| `phone` | Phone number scraped from the site |
| `source`, `sourceUrl`, `profileUrl`, `scrapedAt` | Provenance metadata |

Fields with no available data are returned as `null` rather than omitted or guessed.

### More lead-generation Actors

Part of a family of lead-gen Actors sharing the same enrichment engine and output shape - mix and match depending on where your leads live:

- [B2B Company Leads + Verified Emails](https://apify.com/mrdoe/b2b-company-leads) - finds B2B decision-makers at any company, filtered by department and seniority, with optional firmographics.
- [E-commerce Store Leads + Verified Emails](https://apify.com/mrdoe/ecommerce-store-leads) - scrapes online stores for platform, product count, social links, and contact info.
- [Real Estate Agent Leads + Verified Emails](https://apify.com/mrdoe/real-estate-agent-leads) - scrapes brokerage/agency sites for agent rosters and verified contact emails.
- [Google Maps Business Leads + Verified Emails](https://apify.com/mrdoe/google-maps-business-leads) - pulls business leads straight from Google Maps search results.

### Cost & performance notes

- Enrichment is deduplicated per unique domain; email verification and firmographic enrichment are opt-in extras, off by default.
- Concurrency is kept conservative to stay reliable at scale.

# Actor input Schema

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

Company website URLs (or bare domains) to crawl for contact info, e.g. https://example.com

## `maxContactPagesPerSite` (type: `integer`):

How many additional internal pages (contact, about, team, etc.) to check per site, beyond the homepage.

## `maxEmailsPerCompany` (type: `integer`):

Maximum number of contact records to return per website.

## `maxItems` (type: `integer`):

Overall cap on leads returned across all websites. Set to 0 for unlimited.

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

Proxy settings for the run.

## `enableContactEnrichment` (type: `boolean`):

When enabled, each domain is automatically looked up for named contacts and their emails. Falls back to on-site scraped emails if none are found.

## `enableEmailVerification` (type: `boolean`):

When enabled, every returned email is additionally checked for deliverability.

## `enableCompanyEnrichment` (type: `boolean`):

When enabled, looks up each domain for industry/location data.

## Actor input object example

```json
{
  "startUrls": [
    "https://apify.com"
  ],
  "maxContactPagesPerSite": 4,
  "maxEmailsPerCompany": 3,
  "maxItems": 0,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "enableContactEnrichment": true,
  "enableEmailVerification": true,
  "enableCompanyEnrichment": true
}
```

# Actor output Schema

## `overview` (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 = {
    "startUrls": [
        "https://apify.com"
    ],
    "maxContactPagesPerSite": 4,
    "maxEmailsPerCompany": 3,
    "maxItems": 0,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("mrdoe/website-contact-leads").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": ["https://apify.com"],
    "maxContactPagesPerSite": 4,
    "maxEmailsPerCompany": 3,
    "maxItems": 0,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("mrdoe/website-contact-leads").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": [
    "https://apify.com"
  ],
  "maxContactPagesPerSite": 4,
  "maxEmailsPerCompany": 3,
  "maxItems": 0,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call mrdoe/website-contact-leads --silent --output-dataset

```

## MCP server setup

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

```

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/3bsml6CgCVQDURn5J/builds/8q74aHzv61VcaoRWu/openapi.json
