# Website Contact & Company Extractor (`ayeeyee/website-contact-company-extractor`) Actor

Turn a list of domains into verified business contacts: MX/DNS-validated emails, phones, social profiles, technology stack, and an A–D lead score. No API keys, no residential proxy required. Clean, deduped, per-successful-result pricing.

- **URL**: https://apify.com/ayeeyee/website-contact-company-extractor.md
- **Developed by:** [Virtual Footprint LLC](https://apify.com/ayeeyee) (community)
- **Categories:** Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $8.00 / 1,000 enriched contact 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/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 Contact & Company Extractor

**Turn a list of domains into sales-ready leads.** Give this Actor a list of company websites and it returns, for each one: verified business **emails** (MX/DNS-validated), **phone numbers**, **social profiles**, the site's **technology stack**, and an **A–D lead score** — clean, normalized, and deduplicated.

Unlike map/search scrapers, this Actor fetches **each target's own public website directly**, so it needs **no API keys and no residential proxy**. You pay only for domains that return a real contact signal.

---

### Why this Actor

- **Everything bundled, one transparent price.** Emails + phones + socials + tech stack + lead score in a single result. Competitors charge separately for each.
- **Verified, not scraped-and-hoped.** Emails are validated against live MX/DNS records; placeholder, asset-filename (`logo@2x.png`), and example emails are dropped. Phones are strictly filtered to real NANP numbers — no analytics IDs or version strings.
- **Deduplicated & normalized output.** On-domain emails are ranked first; phones deduped by digits; socials mapped per platform.
- **No proxy headaches.** We read the site the target already publishes to the world.
- **MCP-ready.** Works as an "enrich this domain" tool for AI agents.

### Input

```json
{
  "websites": ["stripe.com", "https://www.shopify.com"],
  "verifyEmails": true,
  "concurrency": 5
}
````

| Field | Type | Default | Description |
|---|---|---|---|
| `websites` | array | — (required) | Domains or URLs to enrich. One result per input. |
| `verifyEmails` | boolean | `true` | Validate the best email's domain via MX/DNS. |
| `concurrency` | integer | `5` | Domains processed in parallel (1–10). |
| `proxyConfiguration` | object | off | Optional. Only needed if you hit rate limits. |

### Output

One record per input domain:

```json
{
  "inputDomain": "stripe.com",
  "resolvedUrl": "https://stripe.com",
  "companyName": "Stripe | Financial Infrastructure to Grow Your Revenue",
  "emails": ["jane.diaz@stripe.com"],
  "emailVerified": true,
  "phones": ["+1 888 926 2289"],
  "socials": { "youtube": "https://www.youtube.com/stripe" },
  "techStack": ["Nginx", "React"],
  "leadScore": "A",
  "hasContact": true,
  "pagesScanned": 3
}
```

*(Real result from a validation run. `emailVerified: true` means the email's domain has live MX/DNS records.)*

#### Field reference

| Field | Description |
|---|---|
| `emails` | Cleaned, deduped business emails; on-domain addresses ranked first. |
| `emailVerified` | `true` if the best email's domain resolves MX/DNS. |
| `phones` | Real NANP phone numbers, deduped by digits. |
| `socials` | Map of platform → profile URL (facebook, instagram, twitter, linkedin, youtube, tiktok, pinterest). |
| `techStack` | Detected technologies (CMS, analytics, e-commerce, marketing tools). |
| `leadScore` | `A` (richest: verified email + phone + social + tech) … `D` (no signal). |
| `hasContact` | `true` when at least one contact signal was found. **You are billed only for these.** |

### Performance & coverage

- **Throughput:** ~5 domains/sec at `concurrency: 5` (homepage + up to 3 contact/about pages each).
- **Best coverage** on small/medium business sites (agencies, local services, professional practices) that publish contact info in plaintext — the core prospecting use case.
- **Lower coverage** on large JavaScript single-page apps that render contact data client-side or hide it behind forms. These return partial data (tech stack, socials) rather than emails.
- **You are not charged** for domains that return no contact signal (`hasContact: false`).

### Pricing (pay per result)

| Event | Price | When |
|---|---|---|
| Actor start | $0.0001 | Once per run |
| **Enriched contact result** | **$0.008** | Per domain returning ≥1 contact signal (primary) |
| Verified email | $0.003 | When ≥1 MX/DNS-validated email is returned |
| Tech stack detected | $0.001 | When the tech stack is fingerprinted |

No upstream compose cost (we fetch the target's own site directly), so unit margin is positive at these prices.

### Troubleshooting

- **Empty result for a big brand site:** likely a client-rendered SPA — contact data isn't in the HTML. Feed SMB/local-business domains for best yield.
- **`emailVerified: false` but an email is present:** the address was found but its domain's MX/DNS didn't resolve within the timeout; treat as lower confidence.
- **Rate limited on a large batch:** lower `concurrency` or enable a datacenter proxy in `proxyConfiguration`.

### Changelog

- **v1.0** — Initial release: email (MX/DNS-verified) + phone + social + tech-stack extraction, A–D lead scoring, per-successful-result pricing.

# Actor input Schema

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

List of company domains or URLs to enrich (e.g. 'stripe.com', 'https://www.shopify.com'). One record is returned per input.

## `verifyEmails` (type: `boolean`):

Validate the best email's domain against live MX/DNS records. Adds ~1s per domain.

## `concurrency` (type: `integer`):

How many domains to process in parallel (1–10).

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

Optional. Fetching happens against each target's own public site, so a proxy is usually NOT needed. Use a datacenter proxy only if you hit rate limits.

## Actor input object example

```json
{
  "websites": [
    "stripe.com",
    "https://www.shopify.com"
  ],
  "verifyEmails": true,
  "concurrency": 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 = {
    "websites": [
        "stripe.com",
        "vercel.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ayeeyee/website-contact-company-extractor").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 = { "websites": [
        "stripe.com",
        "vercel.com",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("ayeeyee/website-contact-company-extractor").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 '{
  "websites": [
    "stripe.com",
    "vercel.com"
  ]
}' |
apify call ayeeyee/website-contact-company-extractor --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Website Contact & Company Extractor",
        "description": "Turn a list of domains into verified business contacts: MX/DNS-validated emails, phones, social profiles, technology stack, and an A–D lead score. No API keys, no residential proxy required. Clean, deduped, per-successful-result pricing.",
        "version": "1.1",
        "x-build-id": "0GObxVcf5DYVFlniI"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/ayeeyee~website-contact-company-extractor/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-ayeeyee-website-contact-company-extractor",
                "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/ayeeyee~website-contact-company-extractor/runs": {
            "post": {
                "operationId": "runs-sync-ayeeyee-website-contact-company-extractor",
                "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/ayeeyee~website-contact-company-extractor/run-sync": {
            "post": {
                "operationId": "run-sync-ayeeyee-website-contact-company-extractor",
                "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": [
                    "websites"
                ],
                "properties": {
                    "websites": {
                        "title": "Websites / Domains",
                        "type": "array",
                        "description": "List of company domains or URLs to enrich (e.g. 'stripe.com', 'https://www.shopify.com'). One record is returned per input.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "verifyEmails": {
                        "title": "Verify emails (MX/DNS)",
                        "type": "boolean",
                        "description": "Validate the best email's domain against live MX/DNS records. Adds ~1s per domain.",
                        "default": true
                    },
                    "concurrency": {
                        "title": "Concurrency",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "How many domains to process in parallel (1–10).",
                        "default": 5
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional. Fetching happens against each target's own public site, so a proxy is usually NOT needed. Use a datacenter proxy only if you hit rate limits.",
                        "default": {
                            "useApifyProxy": 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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
