# Universal B2B Website Email, Phone & Social Links Enricher (`neon_innovation_lab/universal-b2b-contact-enricher`) Actor

Extract verified direct contact emails, phone numbers, and official LinkedIn, Instagram, Facebook, and X/Twitter profiles from any list of company domains.

- **URL**: https://apify.com/neon\_innovation\_lab/universal-b2b-contact-enricher.md
- **Developed by:** [Neon Innovation Lab](https://apify.com/neon_innovation_lab) (community)
- **Categories:** Lead generation, Developer tools, AI
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$40.00 / 1,000 company website contact enricheds

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

## Universal B2B Website Email, Phone & Social Links Enricher (2026)

A high-speed B2B contact extraction and domain enrichment Actor. Input any list of company domains or websites to extract **verified business emails**, **phone numbers**, and **official social media links** (LinkedIn, Instagram, Facebook, X/Twitter, GitHub).

***

### 🚀 Key Features

- **High-Speed Batch Enrichment:** Processes hundreds of company domains in parallel with lightweight Cheerio architecture.
- **Deep Subpage Discovery:** Automatically crawls `/contact`, `/about`, and `/team` pages to capture unlisted executive contacts.
- **False-Positive Filtering:** Automatically filters out tracking pixels, Sentry crash reports, and generic framework strings.
- **Pay-Per-Result Pricing:** Pay only for successfully enriched domains.
- **CRM-Ready:** Outputs clean JSON/CSV ready for instant import into HubSpot, Clay, Salesforce, and Apollo.

***

### 📥 Input Example

```json
{
  "startUrls": [
    "https://stripe.com",
    "https://vercel.com",
    "https://supabase.com"
  ],
  "crawlContactAndAboutPages": true,
  "maxConcurrency": 10
}
```

***

### 📤 Output Format

```json
{
  "domain": "stripe.com",
  "sourceUrl": "https://stripe.com",
  "emails": ["press@stripe.com", "support@stripe.com"],
  "phones": ["+1 888-926-2289"],
  "socials": {
    "linkedin": "https://www.linkedin.com/company/stripe",
    "twitter": "https://twitter.com/stripe",
    "github": "https://github.com/stripe"
  },
  "contactPageUrl": "https://stripe.com/contact",
  "scrapedAt": "2026-09-04T03:15:00.000Z"
}
```

# Actor input Schema

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

List of company websites or domains to crawl for contact details (e.g., https://stripe.com, vercel.com).

## `crawlContactAndAboutPages` (type: `boolean`):

Automatically discover and crawl /contact, /about, /team, and /impressum pages for hidden emails.

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

Maximum number of simultaneous website requests.

## Actor input object example

```json
{
  "startUrls": [
    "https://stripe.com",
    "https://vercel.com",
    "https://supabase.com"
  ],
  "crawlContactAndAboutPages": true,
  "maxConcurrency": 10
}
```

# 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 = {
    "startUrls": [
        "https://stripe.com",
        "https://vercel.com",
        "https://supabase.com"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("neon_innovation_lab/universal-b2b-contact-enricher").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://stripe.com",
        "https://vercel.com",
        "https://supabase.com",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("neon_innovation_lab/universal-b2b-contact-enricher").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://stripe.com",
    "https://vercel.com",
    "https://supabase.com"
  ]
}' |
apify call neon_innovation_lab/universal-b2b-contact-enricher --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,neon_innovation_lab/universal-b2b-contact-enricher"
        }
    }
}

```

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/yS2Ysd7hY8RcJcAYx/builds/zzSpJvMRVe8gTZ2xK/openapi.json
