# Company Email & Contact Finder (`tuhin/company-email-contact-finder`) Actor

Find public emails, phone numbers and social profiles for any company domain — from its homepage and contact/imprint pages.

- **URL**: https://apify.com/tuhin/company-email-contact-finder.md
- **Developed by:** [Tuhin](https://apify.com/tuhin) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.90 / 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/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

## Company Email & Contact Finder

**Turn a list of company domains into public emails, phone numbers, and social profiles.**

Give it domains (or company URLs) and it visits the homepage plus the site's contact / about / imprint (Impressum) pages, then extracts and de-duplicates public contact data — classified role vs personal.

> **Responsible use:** Reads only *publicly published* contact information from company websites (mailto links, imprint pages, footers). It does **not** log in, bypass anti-bot, guess/verify private inboxes, or scrape private profiles.

### Who it's for

SDRs, recruiters, agencies, and researchers building outbound lists — especially across the EU, where legal **Impressum** pages publish company email/phone.

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `domains` | array | – | Domains or URLs, e.g. `"stripe.com"`, `"https://zalando.de"`. |
| `maxPagesPerDomain` | integer | `6` | Homepage + this many discovered contact/imprint pages. |
| `includePhones` | boolean | `true` | Extract `tel:` phone numbers. |
| `includeSocials` | boolean | `true` | Extract LinkedIn/X/Facebook/Instagram/YouTube/TikTok/GitHub. |
| `proxyConfiguration` | object | off | Optional; most sites resolve fine without a proxy. |

#### Example input

```json
{ "domains": ["zalando.de", "n26.com", "apify.com"], "maxPagesPerDomain": 8 }
```

### Output (one record per domain)

```json
{
  "domain": "zalando.de",
  "companyName": "Zalando SE",
  "emails": [
    { "email": "legalnotice@zalando.de", "type": "other" },
    { "email": "info@zalando.de", "type": "role" }
  ],
  "emailCount": 2,
  "phones": ["+493020968100"],
  "socials": { "linkedin": "https://linkedin.com/company/zalando", "instagram": "https://instagram.com/zalando" },
  "pagesScanned": ["https://zalando.de/", "https://zalando.de/imprint/"],
  "collectedAt": "2026-08-30T18:00:00Z"
}
```

`type` ∈ `role` (info@, sales@, careers@…) · `personal` (firstname.lastname@) · `other`.

### Notes / limitations

- Finds contacts that are **publicly on the site**. Companies that only use contact forms or render emails via JavaScript may return socials but no email — that's expected, not an error.
- Email TLDs are validated to avoid text-extraction artifacts; unrecognized TLDs are dropped.
- Use it to enrich domains you already have; it does not verify deliverability.

# Actor input Schema

## `domains` (type: `array`):

Company websites to find contacts for, e.g. "stripe.com" or "https://www.stripe.com". One or many.

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

Homepage + up to this many discovered contact/about/imprint pages.

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

Extract tel: phone numbers found on the pages.

## `includeSocials` (type: `boolean`):

Extract LinkedIn/X/Facebook/Instagram/YouTube/TikTok/GitHub profile links.

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

Optional. Most company sites resolve fine without a proxy.

## Actor input object example

```json
{
  "domains": [
    "stripe.com",
    "arbeitnow.com"
  ],
  "maxPagesPerDomain": 6,
  "includePhones": true,
  "includeSocials": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `contacts` (type: `string`):

One record per domain with emails, phones and social profiles.

# 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 = {
    "domains": [
        "apify.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("tuhin/company-email-contact-finder").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "domains": ["apify.com"] }

# Run the Actor and wait for it to finish
run = client.actor("tuhin/company-email-contact-finder").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "domains": [
    "apify.com"
  ]
}' |
apify call tuhin/company-email-contact-finder --silent --output-dataset

```

## MCP server setup

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

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/8qyoBF8nreZTRYMSt/builds/9ipXAgGcdY2aQPVz0/openapi.json
