# Website Contacts & Tech Stack - Emails, Phones, Socials (`scrapewise/website-enrichment`) Actor

Turn a list of websites into leads: emails, phones, WhatsApp, social profiles, company CNPJ (Brazil) and the full technology stack (CMS, e-commerce, analytics, frameworks) in one pass. Works with Google Maps Scraper results. HTTP only, fast and cheap.

- **URL**: https://apify.com/scrapewise/website-enrichment.md
- **Developed by:** [Scrapewise Data](https://apify.com/scrapewise) (community)
- **Categories:** Lead generation, SEO tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.40 / 1,000 website enricheds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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 Enrichment

Turn a list of websites into ready-to-use leads: emails, phones, WhatsApp, social profiles and the full technology stack of each site, in one pass and one price.

### Use cases

- Enrich a list of companies (from Google Maps, a CRM export or a spreadsheet) with emails, phones and social links before outreach.
- Find every store running Shopify, WooCommerce, VTEX or Magento in a list, with the contact to sell them your app or service.
- Qualify agencies and SaaS prospects by the tools they already use (Google Analytics, HubSpot, React, Cloudflare and 6,000+ more).

### Input

```json
{
  "websites": ["python.org", "https://wordpress.org"],
  "maxPagesPerSite": 3,
  "detectTechnologies": true
}
```

- `websites`: domains or URLs, one per line. `startUrls`, `urls` and `domains` are also accepted, so you can switch from other contact or tech-stack scrapers without changing your integration.
- `googleMapsDatasetId`: paste the dataset ID of a **Google Maps Scraper** run and every place's website is enriched, keeping the place name, placeId and address.
- `maxPagesPerSite`: the home page plus contact/about pages found on it (default 3).

### Output

One item per website:

```json
{
  "domain": "wordpress.org",
  "title": "Blog Tool, Publishing Platform, and CMS – WordPress.org",
  "language": "en",
  "emails": ["..."],
  "phones": ["..."],
  "whatsapp": [],
  "facebook": ["https://www.facebook.com/WordPress"],
  "instagram": ["https://www.instagram.com/wordpress"],
  "linkedin": [],
  "twitter": ["https://x.com/WordPress"],
  "youtube": ["https://www.youtube.com/wordpress"],
  "cnpj": [],
  "technologyNames": ["Nginx", "PHP", "WordPress"],
  "technologies": [{ "name": "WordPress", "categories": ["CMS", "Blogs"], "version": "7.2", "confidence": 100 }],
  "pagesVisited": ["https://wordpress.org/", "https://wordpress.org/about/"],
  "error": null
}
```

`cnpj` is the Brazilian company registration number, validated by check digit, when the site publishes it.

Websites that do not respond come back with `error` filled in and **are not charged**.

### Pricing

**US$ 4.00 per 1,000 websites enriched, no monthly fee.** Contacts and technology stack are included in the same price, and the price is per website, not per page visited.

### How to use

- **Console:** paste the websites, click Start, download JSON, CSV or Excel.
- **API:** `POST https://api.apify.com/v2/acts/scrapewise~website-enrichment/run-sync-get-dataset-items?token=YOUR_TOKEN` with the input above.
- **After Google Maps Scraper:** run it, copy the dataset ID of the run, paste it in `googleMapsDatasetId`.
- **Integrations:** n8n, Make, Zapier and Google Sheets through the Apify integrations.

### Limitations

- Only what the website publishes. No personal data from other sources, no email guessing or verification.
- Technology detection reads the home page HTML, headers and cookies. Technologies that only appear after JavaScript runs may be missed.
- Websites behind strong anti-bot protection may answer with an error; those are not charged.
- Something broke? Open an issue on the Actor page. Issues are answered within 12 hours.

This Actor collects only public data and respects the site's terms. Technology fingerprints come from the open-source [webappanalyzer](https://github.com/enthec/webappanalyzer) project (GPL-3.0).

### Em português

Transforma uma lista de sites em leads: e-mails, telefones, WhatsApp, redes sociais, CNPJ e as tecnologias que cada site usa, numa passada só.

- Enriquecer uma lista de empresas (do Google Maps, do CRM ou de uma planilha) antes da prospecção.
- Achar todas as lojas em Shopify, WooCommerce, VTEX ou Nuvemshop de uma lista, já com o contato.
- Qualificar clientes pelas ferramentas que já usam.

**US$ 4,00 por 1.000 sites enriquecidos, sem mensalidade.** Site que não responde não é cobrado.

# Actor input Schema

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

Domains or URLs, one per line (e.g. example.com or https://www.example.com). Duplicated domains are processed once.

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

Same as 'websites', in the request-list format used by other contact scrapers. You can upload a file here.

## `googleMapsDatasetId` (type: `string`):

Dataset ID of a Google Maps Scraper run. The 'website' of each place is enriched and the place name, placeId and address are kept.

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

Home page plus contact/about pages found on it. More pages find more contacts; the price is per website, not per page.

## `detectTechnologies` (type: `boolean`):

Detect CMS, e-commerce platform, analytics, frameworks, CDN and 6,000+ other technologies from the home page.

## `maxItems` (type: `integer`):

Maximum number of websites to process in this run.

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

Datacenter proxy is enough for most websites.

## Actor input object example

```json
{
  "websites": [
    "https://www.python.org",
    "https://wordpress.org"
  ],
  "maxPagesPerSite": 3,
  "detectTechnologies": true,
  "maxItems": 30,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

No description

## `resultsCsv` (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": [
        "https://www.python.org",
        "https://wordpress.org"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapewise/website-enrichment").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": [
        "https://www.python.org",
        "https://wordpress.org",
    ],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapewise/website-enrichment").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 '{
  "websites": [
    "https://www.python.org",
    "https://wordpress.org"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call scrapewise/website-enrichment --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,scrapewise/website-enrichment"
        }
    }
}
```

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/041LB8z11WoFqLBCQ/builds/rWT74zoMKHV9AaJxc/openapi.json
