# EU Contact Miner — Extract Business Emails, Phones & Socials (`conical_sabal/eu-contact-miner`) Actor

Mine EU company websites for business emails, phone numbers, and social profiles. Fast Cheerio crawl with /kontakt /impressum /o-nas paths. Optional local LLM enrichment for category, language, and outreach pitch.

- **URL**: https://apify.com/conical\_sabal/eu-contact-miner.md
- **Developed by:** [Robert](https://apify.com/conical_sabal) (community)
- **Categories:** Lead generation, AI, Social media
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-usage

## 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

## EU Contact Miner

**Apify Actor** that crawls company websites (EU-focused path discovery) and extracts **business emails**, **phone numbers**, and **social profiles**. Optional enrichment via any OpenAI-compatible local LLM (e.g. Bionic on localhost:1234) adds industry category, language, and a short outreach pitch.

### Features

- CheerioCrawler (fast, low-cost HTML parsing)
- EU contact path hints: /kontakt, /impressum, /o-nas, /en/contact, and more
- Junk email filtering (example.com, sentry, wixpress, image filenames, noreply)
- Social discovery: LinkedIn, Facebook, Instagram, X/Twitter, YouTube, TikTok, Telegram, WhatsApp, Xing
- Optional LLM enrichment (enrichWithLlm) via OpenAI-compatible /v1/chat/completions
- Clean dataset rows ready for CRM / outreach tools

### Input

| Field | Type | Default | Description |
| --- | --- | --- | --- |
| startUrls | array | required | Company URLs |
| maxRequestsPerCrawl | integer | 50 | Global page budget |
| maxEmailsPerSite | integer | 20 | Cap unique emails per site |
| customContactPaths | string\[] | EU defaults | Contact path hints |
| proxyConfiguration | object | off | Apify Proxy |
| enrichWithLlm | boolean | false | Local/remote LLM enrichment |
| llmBaseUrl | string | http://127.0.0.1:1234/v1 | LLM API base |
| llmModel | string | meta/muse-glimmer | Model id |
| llmApiKey | string | optional | Bearer token |

### Output

One dataset item per start website with: website, emails\[], phones\[], socials{}, pagesCrawled, scrapedAt, and optional llmCategory / llmPitch / llmLanguage.

### Local development

```bash
npm i
apify run
```

Enable LLM against Bionic:

```json
{
  "enrichWithLlm": true,
  "llmBaseUrl": "http://127.0.0.1:1234/v1",
  "llmModel": "meta/muse-glimmer"
}
```

Reasoning models: requests max\_tokens >= 1500 and asks for FINAL ANSWER JSON; also reads reasoning\_content as fallback.

### Pricing ideas

- Pay-per-result: about $1.50 / 1,000 results
- Rental: about $39 / month

### Compliance

Only use publicly published business contacts. Respect robots.txt, site ToS, GDPR and ePrivacy.

### Changelog

#### 1.0.0

- Initial release with EU path discovery, junk filters, optional local LLM enrichment.

# Actor input Schema

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

Company website URLs to mine for contact details.

## `maxRequestsPerCrawl` (type: `integer`):

Maximum pages to fetch across the whole run.

## `maxEmailsPerSite` (type: `integer`):

Cap on unique emails stored per start URL.

## `customContactPaths` (type: `array`):

Relative paths tried on each site (EU-focused defaults).

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

Optional Apify Proxy settings.

## `enrichWithLlm` (type: `boolean`):

If true, call OpenAI-compatible LLM (e.g. Bionic on localhost) for category, language, and outreach pitch.

## `llmBaseUrl` (type: `string`):

OpenAI-compatible API base URL.

## `llmModel` (type: `string`):

Model id exposed by the local LLM server.

## `llmApiKey` (type: `string`):

Optional Bearer token for the LLM API.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.allegro.pl/"
    },
    {
      "url": "https://www.cdprojekt.com/"
    },
    {
      "url": "https://www.skoda-auto.com/"
    }
  ],
  "maxRequestsPerCrawl": 30,
  "maxEmailsPerSite": 20,
  "customContactPaths": [
    "/contact",
    "/kontakt",
    "/impressum",
    "/about",
    "/o-nas",
    "/en/contact",
    "/kontaktujte-nas",
    "/contact-us",
    "/about-us",
    "/firma",
    "/company",
    "/legal"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "enrichWithLlm": false,
  "llmBaseUrl": "http://127.0.0.1:1234/v1",
  "llmModel": "meta/muse-glimmer"
}
```

# Actor output Schema

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

Dataset rows: one website per item with emails, phones, and socials.

# 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://www.allegro.pl/"
        },
        {
            "url": "https://www.cdprojekt.com/"
        },
        {
            "url": "https://www.skoda-auto.com/"
        }
    ],
    "maxRequestsPerCrawl": 30,
    "maxEmailsPerSite": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("conical_sabal/eu-contact-miner").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://www.allegro.pl/" },
        { "url": "https://www.cdprojekt.com/" },
        { "url": "https://www.skoda-auto.com/" },
    ],
    "maxRequestsPerCrawl": 30,
    "maxEmailsPerSite": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("conical_sabal/eu-contact-miner").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://www.allegro.pl/"
    },
    {
      "url": "https://www.cdprojekt.com/"
    },
    {
      "url": "https://www.skoda-auto.com/"
    }
  ],
  "maxRequestsPerCrawl": 30,
  "maxEmailsPerSite": 20
}' |
apify call conical_sabal/eu-contact-miner --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,conical_sabal/eu-contact-miner"
        }
    }
}
```

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/ovJ36lE1CNEr5DBeW/builds/XKqZW1EihQRtnWtmJ/openapi.json
