# Website Contact & Tech Stack Enricher (`zsb1978/website-contact-tech-enricher`) Actor

Find public emails, phones, social profiles, company metadata, contact pages, and detected web technologies from business websites.

- **URL**: https://apify.com/zsb1978/website-contact-tech-enricher.md
- **Developed by:** [sky zhong](https://apify.com/zsb1978) (community)
- **Categories:** Lead generation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.00 / 1,000 enriched websites

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

## Website Contact & Tech Stack Enricher

Turn a list of public websites into structured company, contact, social, and technology intelligence. The Actor visits each homepage and a small set of high-value same-site pages—such as Contact, About, Support, or Imprint—and returns one consolidated record per input website.

It is designed for lead enrichment, market research, technology segmentation, agency prospecting, CRM preparation, and lightweight competitive intelligence. It does not require cookies, account logins, browser sessions, residential proxies, or paid third-party APIs.

### What you get

- Public email addresses, including same-domain email filtering
- Public phone numbers
- Source URL, source type, and confidence for contact evidence
- LinkedIn, Facebook, Instagram, X/Twitter, YouTube, TikTok, GitHub, and other social profiles
- Company name, description, address, language, page title, and schema.org types
- Contact-page URLs and contact-form detection
- Technology signals for common CMS, e-commerce, JavaScript frameworks, analytics, marketing, payment, support, CDN, hosting, and web-server tools
- Page-level load time and extraction counts
- Structured failure rows, so every input can be reconciled

### Input

Add up to 500 public website URLs in `startUrls`. URLs without `https://` are accepted. The default configuration checks up to five pages per website, respects `robots.txt`, waits at least 200 ms between requests to the same origin, and processes up to five websites concurrently.

```json
{
  "startUrls": [
    { "url": "https://example.com/" },
    { "url": "apify.com" }
  ],
  "maxPagesPerSite": 5,
  "respectRobotsTxt": true,
  "includeSubdomains": false
}
```

`maxPagesPerSite` can be 1–10. A value of 1 checks only the landing page; a larger value can improve contact coverage. Enable `includeSubdomains` when a company's contact or support pages are hosted on child subdomains.

### Output

Each input website produces one dataset record. A successful record looks like this:

```json
{
  "inputUrl": "https://example.com/",
  "finalUrl": "https://example.com/",
  "success": true,
  "companyName": "Example",
  "emails": ["hello@example.com"],
  "sameDomainEmails": ["hello@example.com"],
  "phones": ["+12025550123"],
  "socialProfiles": [
    { "network": "LinkedIn", "url": "https://linkedin.com/company/example", "sourceUrl": "https://example.com/" }
  ],
  "technologies": [
    { "name": "WordPress", "category": "CMS", "confidence": "high", "evidence": ["/wp-content/"] }
  ],
  "contactPages": ["https://example.com/contact/"],
  "hasContactForm": true,
  "pagesFetched": 3,
  "errorCode": null
}
```

Use the **Enrichment overview** dataset view for a compact table, or the **Evidence and traceability** view to audit sources. The `OUTPUT` record in the default key-value store contains run totals and coverage metrics.

### Pricing

The Actor uses pay-per-event pricing. One `website-enriched` event is charged for each successful consolidated website result. Failed inputs are saved as structured error rows and are not charged. Platform usage is included in the event price. The small synthetic Actor-start event is defined by Apify.

### Reliability and responsible use

Only public HTTP and HTTPS pages are supported. Localhost, private networks, embedded URL credentials, oversized responses, and unsafe redirect destinations are blocked. Every redirect is validated. `robots.txt` is enabled by default and crawl delays are honored up to a bounded maximum.

The Actor only reports information already exposed by the target website. Public availability does not automatically grant permission for every downstream use. Follow applicable privacy, marketing, anti-spam, copyright, and database laws. Verify critical contact data before outreach and provide lawful opt-out mechanisms where required.

### Limitations

- JavaScript-only content that is absent from the initial HTML may not be detected.
- Obfuscated contacts can be missed, and numbers unrelated to contact details can occasionally appear.
- Technology detection is evidence-based, not a full remote software inventory.
- Websites protected by bot challenges, authentication, or restrictive robots rules may return an error row.
- No personal profiles, gated data, or private account information are accessed.

### FAQ

#### Can I export results?

Yes. Apify datasets can be downloaded as JSON, CSV, Excel, XML, or RSS and accessed through the API.

#### Is one page one charge?

No. One successful input website is one enrichment result, even if several same-site pages are checked.

#### Why did a website return no email?

The site may only provide a contact form, load the address with client-side JavaScript, hide it behind an account, or place it outside the configured page limit.

#### Does this Actor send messages or modify websites?

No. It only reads public pages and saves structured findings.

### Support

If you report an issue, include the public input URL, run ID, expected behavior, and the observed error code. Do not send passwords, session cookies, private URLs, or personal data.

# Actor input Schema

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

Public HTTP or HTTPS websites to enrich. Domains without a scheme are accepted. Up to 500 unique websites per run.

## `maxPagesPerSite` (type: `integer`):

Fetch the homepage plus high-value same-site pages such as Contact, About, Support, and Imprint. A higher value can find more contacts but takes longer.

## `respectRobotsTxt` (type: `boolean`):

Check robots.txt before every page request. Keep this enabled unless you own the website and have a specific reason.

## `includeSubdomains` (type: `boolean`):

Allow discovered Contact or About pages hosted on a child subdomain of the starting website.

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

Number of websites processed at the same time. Requests to the same origin are still paced.

## `delayMs` (type: `integer`):

Minimum spacing between requests to the same origin. A longer robots.txt crawl-delay takes precedence.

## `requestTimeoutSecs` (type: `integer`):

Maximum time allowed for one HTTP request.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://example.com/"
    }
  ],
  "maxPagesPerSite": 5,
  "respectRobotsTxt": true,
  "includeSubdomains": false,
  "maxConcurrency": 5,
  "delayMs": 200,
  "requestTimeoutSecs": 30
}
```

# Actor output Schema

## `results` (type: `string`):

Contacts, social profiles, company metadata, technology evidence, and page-level traceability.

## `summary` (type: `string`):

Processed, successful, failed, and contact-coverage totals for this run.

# 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": [
        {
            "url": "https://example.com/"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("zsb1978/website-contact-tech-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": [{ "url": "https://example.com/" }] }

# Run the Actor and wait for it to finish
run = client.actor("zsb1978/website-contact-tech-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": [
    {
      "url": "https://example.com/"
    }
  ]
}' |
apify call zsb1978/website-contact-tech-enricher --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,zsb1978/website-contact-tech-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/NPe7r40xldWfBfFLl/builds/SDKs875xrARdpOie7/openapi.json
