# Domain Lead Enricher - Apollo Clearbit Alt (`wiry_kingdom/domain-lead-enricher`) Actor

Enrich any domain into a complete B2B sales lead: company name, description, industry, employee estimate, location, public business emails, phones, social profiles, tech stack. 100x cheaper than Apollo or Clearbit.

- **URL**: https://apify.com/wiry\_kingdom/domain-lead-enricher.md
- **Developed by:** [Mohieldin Mohamed](https://apify.com/wiry_kingdom) (community)
- **Categories:** Lead generation, Business
- **Stats:** 4 total users, 3 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

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

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

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

## Domain Lead Enricher — Apollo / Clearbit alternative at 1/100 the cost

**Turn any domain into a complete B2B sales lead profile in one HTTP request. 100x cheaper than Apollo or Clearbit.**

You give it a list of domains. It returns company name, description, industry, employee estimate, location, public business emails, phone numbers, social profiles, tech stack, and a 0-100 enrichment score for each one. Pay-per-event so you only pay for the leads you actually need.

### What does Domain Lead Enricher do?

Sales teams spend $99-$2,000/month on tools like Apollo, Clearbit, Hunter and ZoomInfo to enrich domains into structured lead profiles. This actor delivers ~70% of that value at 1% of the cost using only public web data:

- **Company name** from `og:site_name`, JSON-LD Organization schema, or `<title>`
- **Description** from meta description, JSON-LD, or about page
- **Industry** from JSON-LD or schema.org markup
- **Logo** from favicon / apple-touch-icon / manifest
- **Public business emails** (info@, sales@, support@, hello@, etc. — never individual employees)
- **Phone numbers** from contact pages
- **Social profiles**: Twitter / LinkedIn / Facebook / Instagram / YouTube / GitHub / TikTok
- **Tech stack** (Wappalyzer-style): 50+ frameworks, analytics tools, CDNs, hosting, ecommerce platforms
- **Founded year** and **location** from JSON-LD Organization schema
- **Enrichment score** (0-100) so you know how complete the profile is

Try it: paste `stripe.com` into the **Domains** field, press Start, and watch the dataset fill up with everything Stripe publishes about itself.

### Why use Domain Lead Enricher?

- **Replace Apollo / Clearbit / Hunter at 1% the cost.** Pay-per-event means you only pay for the leads you actually use, not a $99/month flat fee for unused credits.
- **Bulk enrichment for outbound campaigns.** Feed in 1,000 domains from your CRM, get back full profiles for outbound personalization.
- **Sales prospecting research.** Find every company in a niche with a specific tech stack (e.g. "everyone using Stripe + Webflow").
- **Lead scoring at scale.** Use the enrichment score to prioritize which leads are worth manual research.
- **Data enrichment for free trial signups.** Hit your /signup webhook with the new user's domain → enrich → route to the right sales rep.
- **Tech stack intelligence.** Find every company using a specific competitor or partner tech.

### How to use

1. Click **Try for free** (or **Start**)
2. Paste domains into **Domains** (one per line — bare domains or full URLs both work)
3. Click **Start**
4. Download the dataset as JSON, CSV, HTML, or Excel — or hit the API directly

### Input

- **Domains** — list of domains to enrich
- **Pages to crawl** — which paths to scan for contacts (default: `/`, `/about`, `/contact`, `/team`)
- **Extract emails** — pull public business emails (default: yes)
- **Extract phones** — pull phone numbers (default: yes)
- **Detect tech stack** — Wappalyzer-style detection (default: yes)
- **Extract socials** — find social profile links (default: yes)
- **Proxy configuration** — optional Apify Proxy

### Output

```json
{
    "domain": "stripe.com",
    "finalUrl": "https://stripe.com/",
    "companyName": "Stripe",
    "description": "Stripe is a financial infrastructure platform for businesses. Millions of companies use Stripe to accept payments, grow their revenue, and accelerate new business opportunities.",
    "industry": "Financial Services",
    "location": "South San Francisco",
    "foundedYear": "2010",
    "logo": "https://stripe.com/img/v3/home/social.png",
    "emails": ["info@stripe.com", "support@stripe.com", "press@stripe.com"],
    "phones": ["+1 888-926-2289"],
    "socialProfiles": {
        "twitter": "https://twitter.com/stripe",
        "linkedin": "https://linkedin.com/company/stripe",
        "github": "https://github.com/stripe",
        "youtube": "https://youtube.com/c/StripeOfficial"
    },
    "techStack": ["Next.js", "React", "Stripe", "Cloudflare", "Segment", "Google Tag Manager"],
    "enrichmentScore": 95,
    "extractedAt": "2026-04-15T19:00:00.000Z"
}
````

### Data table

| Field | Type | Description |
|-------|------|-------------|
| `domain` | string | Normalized domain |
| `finalUrl` | string | Resolved URL after redirects |
| `companyName` | string | Brand / company name |
| `description` | string | Company description |
| `industry` | string | Industry from schema.org |
| `location` | string | Headquarters city |
| `foundedYear` | string | Year founded |
| `logo` | string | URL of the company logo |
| `emails` | array | Public business email addresses |
| `phones` | array | Phone numbers |
| `socialProfiles` | object | URLs of social profiles |
| `techStack` | array | Detected technologies (50+ supported) |
| `enrichmentScore` | number | 0-100 completeness score |
| `extractedAt` | string | ISO timestamp |

### Pricing

This actor uses Apify's **pay-per-event** pricing:

- **Actor start**: $0.01 per run
- **Per domain enriched**: $0.05 per domain

**Example costs:**

- 100 prospect domains → $5.01
- 1,000 domains for outbound → $50.01
- 10,000 domains (full territory) → $500.01

Compare to Apollo at $99/month (limited credits) or Clearbit at $99-$999/month. For most sales teams enriching <2,000 domains/month, this actor pays for itself in under a week.

Free Apify tier members get $5/month in credits, which covers ~100 enrichments per month.

### Tips and advanced options

- **Combine with Google Maps Scraper** to find domains, then enrich them all here in one pipeline
- **Schedule weekly enrichment** of your CRM to keep tech stack and contact info fresh
- **Use the enrichment score** to filter results — score < 30 usually means the domain has very little public info (skip it)
- **Pipe to your CRM via Apify webhooks** — auto-enrich every new signup
- **Combine `techStack` filter with high-score results** to find companies using specific stacks (e.g. "all Webflow + Stripe + Cloudflare companies")

### Ethics and ToS

This actor only extracts **publicly published business information** from a company's own website. Specifically:

- Email addresses are restricted to common business prefixes (`info@`, `sales@`, `support@`, etc.) — **never individual employee emails**
- Only the company's own domain emails are extracted (no third-party emails from the site)
- We make at most ~6 page requests per domain (homepage + a handful of common contact paths)
- The actor respects standard rate limits and uses a clearly-identified user agent

This is the same data a human would find by clicking around the company's website for 30 seconds. We just structure it.

### FAQ and support

**Why so much cheaper than Apollo / Clearbit?** Apollo and Clearbit run massive proprietary databases of contact info purchased from data brokers. We extract only what's publicly published on a company's own site. Less coverage of individual employees, much better coverage of company-level data.

**Will it work on JavaScript-heavy SPAs?** This is an HTTP-based extractor (no browser). It works great on server-rendered sites (95% of marketing pages) and less well on heavy client-side SPAs. If you need full browser rendering, switch to a browser-based actor.

**How accurate is the tech stack detection?** Very good for the 50+ technologies in our fingerprint list. For more exotic tech, pair this with a dedicated Wappalyzer scanner.

**Found a bug?** Open an issue on the Issues tab.

# Actor input Schema

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

List of domain names to enrich. Pass either bare domains (stripe.com) or full URLs (https://stripe.com).

## `checkPages` (type: `array`):

Which page paths to scan for contact info. Default covers homepage, about, contact, and team pages.

## `extractEmails` (type: `boolean`):

Pull email addresses found on public contact pages. Only common business patterns (info@, sales@, support@, hello@, etc.) are returned — never individual employee emails.

## `extractPhones` (type: `boolean`):

Pull phone numbers from contact pages.

## `detectTechStack` (type: `boolean`):

Detect frameworks, analytics, CDN, hosting, ecommerce platform from HTML and headers.

## `extractSocials` (type: `boolean`):

Find Twitter/LinkedIn/Facebook/Instagram/YouTube/GitHub profiles in footers and headers.

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

Optional Apify Proxy. Use for sites that block direct requests.

## Actor input object example

```json
{
  "domains": [
    "stripe.com"
  ],
  "checkPages": [
    "/",
    "/about",
    "/about-us",
    "/contact",
    "/contact-us",
    "/team"
  ],
  "extractEmails": true,
  "extractPhones": true,
  "detectTechStack": true,
  "extractSocials": true,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

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

// Run the Actor and wait for it to finish
const run = await client.actor("wiry_kingdom/domain-lead-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 = { "domains": ["stripe.com"] }

# Run the Actor and wait for it to finish
run = client.actor("wiry_kingdom/domain-lead-enricher").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 '{
  "domains": [
    "stripe.com"
  ]
}' |
apify call wiry_kingdom/domain-lead-enricher --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=wiry_kingdom/domain-lead-enricher",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Domain Lead Enricher - Apollo Clearbit Alt",
        "description": "Enrich any domain into a complete B2B sales lead: company name, description, industry, employee estimate, location, public business emails, phones, social profiles, tech stack. 100x cheaper than Apollo or Clearbit.",
        "version": "0.1",
        "x-build-id": "gNizHzXff7DYOTog0"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/wiry_kingdom~domain-lead-enricher/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-wiry_kingdom-domain-lead-enricher",
                "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/wiry_kingdom~domain-lead-enricher/runs": {
            "post": {
                "operationId": "runs-sync-wiry_kingdom-domain-lead-enricher",
                "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/wiry_kingdom~domain-lead-enricher/run-sync": {
            "post": {
                "operationId": "run-sync-wiry_kingdom-domain-lead-enricher",
                "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": [
                    "domains"
                ],
                "properties": {
                    "domains": {
                        "title": "Domains to enrich",
                        "type": "array",
                        "description": "List of domain names to enrich. Pass either bare domains (stripe.com) or full URLs (https://stripe.com).",
                        "default": [
                            "stripe.com"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "checkPages": {
                        "title": "Pages to crawl per domain",
                        "type": "array",
                        "description": "Which page paths to scan for contact info. Default covers homepage, about, contact, and team pages.",
                        "default": [
                            "/",
                            "/about",
                            "/about-us",
                            "/contact",
                            "/contact-us",
                            "/team"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "extractEmails": {
                        "title": "Extract public business emails",
                        "type": "boolean",
                        "description": "Pull email addresses found on public contact pages. Only common business patterns (info@, sales@, support@, hello@, etc.) are returned — never individual employee emails.",
                        "default": true
                    },
                    "extractPhones": {
                        "title": "Extract phone numbers",
                        "type": "boolean",
                        "description": "Pull phone numbers from contact pages.",
                        "default": true
                    },
                    "detectTechStack": {
                        "title": "Detect tech stack (Wappalyzer-style)",
                        "type": "boolean",
                        "description": "Detect frameworks, analytics, CDN, hosting, ecommerce platform from HTML and headers.",
                        "default": true
                    },
                    "extractSocials": {
                        "title": "Extract social media profiles",
                        "type": "boolean",
                        "description": "Find Twitter/LinkedIn/Facebook/Instagram/YouTube/GitHub profiles in footers and headers.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional Apify Proxy. Use for sites that block direct requests.",
                        "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
