# Website Contact Scraper - Emails, Phones & Socials (`scrapesage/website-contact-scraper`) Actor

Extract emails, phone numbers, social profiles & addresses from any list of websites or domains. Crawls home + contact/about pages, decodes Cloudflare-obfuscated emails, and outputs one clean lead record per domain with a lead score. Export JSON, CSV, Excel.

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

## Pricing

$5.00 / 1,000 contact founds

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

## Website Contact Scraper — Emails, Phone Numbers, Socials & Addresses

Turn **any list of websites or domains into ready-to-contact B2B leads**. This actor visits each site's home page plus its **contact, about, team and imprint pages** and extracts every public contact signal: **email addresses** (including Cloudflare-obfuscated and `[at]` / `[dot]` ones), **phone numbers**, **social profiles** (LinkedIn, Twitter/X, Facebook, Instagram, YouTube, TikTok, Pinterest, GitHub), the **physical address**, the **company name**, and a **contact-form URL** — then ships **one clean, de-duplicated lead record per domain** with a 0–100 lead score.

No browser, no login, no API keys — fast direct HTTP, cheap on datacenter proxies, 99%+ reliable.

### Why this contact scraper?

It's the **last mile of every lead pipeline**: you already have a list of company websites — now get the contacts. Unlike basic email grabbers, this actor crawls the pages where contacts actually live, **decodes obfuscated emails**, validates phone numbers, and merges everything per domain so you get dense, deliverable leads instead of noise.

| Data | Basic email grabbers | This actor |
|---|---|---|
| Emails from `mailto:` and page text | ✅ | ✅ |
| **Cloudflare-obfuscated** emails (`__cf_email__`) | ❌ | ✅ decoded |
| `[at]` / `[dot]` obfuscated emails | ❌ | ✅ |
| Junk-email filtering (images, `no-reply`, fake TLDs) | ❌ | ✅ |
| Phone numbers (validated) | partial | ✅ |
| LinkedIn / X / Facebook / Instagram / YouTube / TikTok / Pinterest / GitHub | ❌ | ✅ |
| Physical address (Schema.org / JSON-LD) | ❌ | ✅ |
| Company name + description | ❌ | ✅ |
| Auto-crawls contact / about / team pages | ❌ | ✅ |
| One de-duplicated record per domain + lead score | ❌ | ✅ |
| **Monitor mode** — only new/changed contacts | ❌ | ✅ |

### Use cases

- **Lead generation & cold outreach** — turn a list of company domains into emails, phones, and social handles for your CRM or sequence.
- **Enrich any prospect list** — feed website URLs you already have (from a directory, an export, a scrape) and get back deliverable contact data.
- **Sales & agency prospecting** — qualify and contact businesses at scale, scored by how reachable they are.
- **Recruiting** — pull contact details for target companies.
- **Data cleaning & verification** — re-check a list on a schedule with **monitor mode** to catch newly-added or changed contacts.
- **Link building & PR** — find the right contact on each target site for outreach.

### How to use

1. [Sign up for Apify](https://console.apify.com/sign-up) — the free plan is enough to try this actor.
2. Open the **Website Contact Scraper**, paste your **websites or domains**, set how many pages per site to scan, and click **Start**.
3. Watch lead records stream into the dataset table.
4. **Export** as JSON, CSV, Excel, XML, or RSS — or pull results programmatically via the [Apify API](https://docs.apify.com/api/v2).

### Input

```json
{
    "startUrls": [
        { "url": "https://stripe.com" },
        { "url": "https://basecamp.com/contact" }
    ],
    "domains": ["notion.so", "figma.com"],
    "maxPagesPerSite": 5,
    "crawlContactPages": true,
    "includePhones": true,
    "includeSocials": true,
    "onlyWithEmail": false
}
````

- **startUrls** — websites/pages to scrape (full URLs or bare domains).
- **domains** — a plain list of domains; combined with `startUrls`.
- **maxPagesPerSite** *(default 5)* — home page + the best contact/about/team/imprint pages.
- **crawlContactPages** *(default true)* — auto-discover and scan contact/about pages.
- **sameDomainOnly** *(default true)* — only follow internal links.
- **includePhones / includeSocials / includeAddress** *(default true)* — toggle each field group.
- **onlyWithEmail** *(default false)* — keep only sites where a public email was found.
- **monitorMode** *(default false)* — only output sites whose contacts changed since the last run with the same list.
- **maxResults / maxConcurrency** — caps and parallelism.
- **proxyConfiguration** — default Apify datacenter proxy works for the vast majority of sites.

### Output

One de-duplicated record per domain:

```json
{
    "domain": "stripe.com",
    "websiteUrl": "https://stripe.com/",
    "companyName": "Stripe",
    "description": "Stripe is a suite of APIs powering online payment processing…",
    "emails": ["sales@stripe.com", "jane.diaz@stripe.com"],
    "emailCount": 2,
    "primaryEmail": "sales@stripe.com",
    "emailSources": [{ "email": "sales@stripe.com", "source": "mailto" }],
    "phones": ["+1 888 926 2289"],
    "primaryPhone": "+1 888 926 2289",
    "socials": {
        "linkedin": "https://www.linkedin.com/company/stripe/",
        "twitter": "https://twitter.com/stripe",
        "facebook": "https://www.facebook.com/StripeHQ",
        "instagram": "https://www.instagram.com/stripehq/",
        "youtube": "https://youtube.com/@stripe",
        "github": "https://github.com/stripe"
    },
    "socialCount": 6,
    "address": "354 Oyster Point Blvd, South San Francisco, CA, 94080, US",
    "contactFormUrl": "https://stripe.com/contact/sales",
    "pagesCrawled": ["https://stripe.com/", "https://stripe.com/contact"],
    "hasEmail": true,
    "leadScore": 88,
    "scrapedAt": "2026-06-16T22:00:00.000Z"
}
```

#### What to expect

Coverage depends on what each site publishes. Big SaaS sites often route contact through forms (so you'll get the form URL + socials + address rather than a personal email); small and mid-market businesses usually expose role emails (`info@`, `sales@`, `contact@`) and phones directly. Emails are aggressively de-junked — image hashes, `no-reply`, analytics strings, and fake TLDs are dropped — so what you get is deliverable. A field is blank only when the site doesn't publish it.

### Automate & schedule

Run this actor on autopilot and pull results into your own stack:

- **[Apify API](https://docs.apify.com/api/v2)** — start runs, fetch datasets, and manage schedules over REST.
- **[apify-client for JavaScript](https://docs.apify.com/api/client/js/)** and **[apify-client for Python](https://docs.apify.com/api/client/python/)** — official SDKs.
- **[Schedules](https://docs.apify.com/platform/schedules)** — re-check a prospect list daily/weekly with **monitor mode** to catch newly-added contacts.
- **[Webhooks](https://docs.apify.com/platform/integrations/webhooks)** — trigger downstream actions (CRM import, Slack alert, email sequence) the moment a run finishes.

```js
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: 'MY_APIFY_TOKEN' });

const run = await client.actor('scrapesage/website-contact-scraper').call({
    domains: ['stripe.com', 'notion.so', 'figma.com'],
    maxPagesPerSite: 5,
    onlyWithEmail: true,
});

const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(`Got ${items.length} contact leads`);
```

### Integrate with any app

Connect the dataset to 5,000+ apps — no code required:

- **[Make](https://docs.apify.com/platform/integrations/make)** — multi-step automation scenarios.
- **[Zapier](https://docs.apify.com/platform/integrations/zapier)** — push new leads straight into your CRM.
- **[Slack](https://docs.apify.com/platform/integrations/slack)** — get notified when monitor mode finds new contacts.
- **[Google Drive / Sheets](https://docs.apify.com/platform/integrations/drive)** — auto-export every run to a spreadsheet.
- **[Airbyte](https://docs.apify.com/platform/integrations/airbyte)** — pipe results into your data warehouse.
- **[GitHub](https://docs.apify.com/platform/integrations/github)** — trigger runs from commits or releases.

### Use with AI assistants (MCP)

The output is clean, LLM-ready JSON. Call this actor from Claude, ChatGPT, or any agent framework through the **[Apify MCP server](https://docs.apify.com/platform/integrations/mcp)** — ask your assistant to "find the contact email and LinkedIn for each of these company websites" and let it run this scraper for you.

### More scrapers from scrapesage

This actor is the **last mile of any lead pipeline** — pair it with a directory scraper to get the websites, then extract the contacts:

- **[Bark Listing Scraper](https://apify.com/scrapesage/bark-listing-scraper)** — service-provider leads and profile URLs.
- **[DesignRush Scraper](https://apify.com/scrapesage/designrush-scraper)** — marketing, design & dev agency leads.
- **[Eventbrite Scraper](https://apify.com/scrapesage/eventbrite-scraper)** — events plus organizer websites.
- **[Shopify Store Scraper](https://apify.com/scrapesage/shopify-store-scraper)** — Shopify merchant stores & websites.
- **[Product Hunt Scraper](https://apify.com/scrapesage/product-hunt-scraper)** — trending launches & maker websites.
- **[Y Combinator Scraper](https://apify.com/scrapesage/ycombinator-scraper)** — startup companies, founders & sites.
- **[Healthgrades Scraper](https://apify.com/scrapesage/healthgrades-scraper)** — healthcare provider leads.
- **[LinkedIn Jobs Scraper](https://apify.com/scrapesage/linkedin-jobs-scraper)** — hiring companies as outreach targets.

### Tips

- **Feed it directory output** — export website URLs from any of the scrapers above and drop them into `domains` or `startUrls` to enrich them with contacts.
- **Tune pages per site** — `maxPagesPerSite: 1` is fastest (home page only); `5–8` finds the most contacts on sites that bury them in contact/about pages.
- **Keep only contactable leads** — set `onlyWithEmail: true` to drop sites with no public email.
- **Re-check on a schedule** — turn on `monitorMode` and schedule the run to catch newly-published emails, phones, or socials over time.

### FAQ

**Where do the contacts come from?** From each website's own public pages — `mailto:` links, visible text, structured data (Schema.org / JSON-LD), and social links — the same things a human visitor would see. No private databases or logins.

**Does it decode hidden / Cloudflare emails?** Yes. It decodes Cloudflare's `__cf_email__` obfuscation and common `[at]` / `[dot]` patterns, while filtering out junk like image filenames, `no-reply`, and fake TLDs.

**Can I export to Google Sheets, CSV, or Excel?** Yes — one click in the dataset view, or automatically on every run via the [Google Drive integration](https://docs.apify.com/platform/integrations/drive).

**Why did a big company return no email?** Many large companies route contact through a form rather than publishing an address — you'll still get the contact-form URL, socials, and address. Small and mid-market sites usually expose emails directly.

**How does monitor mode work?** It remembers each site's contact "fingerprint" in a named key-value store and only re-emits a site when its emails, phones, or socials change — ideal for keeping a prospect list fresh on a schedule.

**Is this legal?** This actor collects publicly available business contact information only. You are responsible for using the data in compliance with applicable laws (e.g. GDPR/CCPA for personal data, CAN-SPAM for outreach) and each site's terms.

### Need help?

Open an issue on the actor's **Issues** tab, or visit the [Apify help center](https://help.apify.com/). Feature requests are welcome — this actor is actively maintained.

# Actor input Schema

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

Websites to extract contact details from. Paste full URLs (<code>https://acme.io</code>) or specific pages (<code>https://acme.io/contact</code>). Bare domains also work.

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

Alternative/additional input — a simple list of domains, e.g. <code>stripe.com</code>, <code>notion.so</code>. Combined with the Websites list above.

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

How many pages to scan per website: the home page plus the best contact / about / team / imprint pages. More pages = more contacts found, more requests.

## `crawlContactPages` (type: `boolean`):

Automatically discover and scan the site's contact, about, team, support and imprint pages — where emails and phones usually live.

## `sameDomainOnly` (type: `boolean`):

Only follow internal links on the same domain (recommended).

## `includePhones` (type: `boolean`):

Extract phone numbers from tel: links, JSON-LD, and validated page text.

## `includeSocials` (type: `boolean`):

Extract LinkedIn, Twitter/X, Facebook, Instagram, YouTube, TikTok, Pinterest, and GitHub profile links.

## `includeAddress` (type: `boolean`):

Extract a postal address from the site's structured data (Schema.org / JSON-LD) when published.

## `onlyWithEmail` (type: `boolean`):

Skip sites where no public email was found — keep only contactable leads.

## `maxResults` (type: `integer`):

Hard cap on the number of lead records (0 = no cap).

## `monitorMode` (type: `boolean`):

Only output sites whose contacts are new or changed since the last run with the same list of websites. Perfect for re-checking a prospect list on a schedule and catching newly-added emails, phones, or socials. (Uses a named key-value store to remember each site's contact fingerprint — it does not interfere with the Apify scheduler.)

## `monitorStoreName` (type: `string`):

Named key-value store used to remember previously-seen contacts for monitor mode. Use distinct names to track separate prospect lists independently.

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

How many sites to crawl in parallel.

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

Proxies to use. The default Apify proxy (datacenter) works for the vast majority of business websites.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://apify.com"
    }
  ],
  "maxPagesPerSite": 5,
  "crawlContactPages": true,
  "sameDomainOnly": true,
  "includePhones": true,
  "includeSocials": true,
  "includeAddress": true,
  "onlyWithEmail": false,
  "maxResults": 0,
  "monitorMode": false,
  "monitorStoreName": "website-contact-monitor",
  "maxConcurrency": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

All extracted website contact / lead records as JSON items in the default dataset.

# 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://apify.com"
        }
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapesage/website-contact-scraper").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://apify.com" }],
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapesage/website-contact-scraper").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 '{
  "startUrls": [
    {
      "url": "https://apify.com"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call scrapesage/website-contact-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapesage/website-contact-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Website Contact Scraper - Emails, Phones & Socials",
        "description": "Extract emails, phone numbers, social profiles & addresses from any list of websites or domains. Crawls home + contact/about pages, decodes Cloudflare-obfuscated emails, and outputs one clean lead record per domain with a lead score. Export JSON, CSV, Excel.",
        "version": "0.1",
        "x-build-id": "Fa0kchDxFP2Ub46qI"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapesage~website-contact-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapesage-website-contact-scraper",
                "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/scrapesage~website-contact-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapesage-website-contact-scraper",
                "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/scrapesage~website-contact-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapesage-website-contact-scraper",
                "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",
                "properties": {
                    "startUrls": {
                        "title": "Websites / URLs",
                        "type": "array",
                        "description": "Websites to extract contact details from. Paste full URLs (<code>https://acme.io</code>) or specific pages (<code>https://acme.io/contact</code>). Bare domains also work.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "domains": {
                        "title": "Domains (plain text)",
                        "type": "array",
                        "description": "Alternative/additional input — a simple list of domains, e.g. <code>stripe.com</code>, <code>notion.so</code>. Combined with the Websites list above.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxPagesPerSite": {
                        "title": "Max pages per site",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "How many pages to scan per website: the home page plus the best contact / about / team / imprint pages. More pages = more contacts found, more requests.",
                        "default": 5
                    },
                    "crawlContactPages": {
                        "title": "Follow contact / about pages",
                        "type": "boolean",
                        "description": "Automatically discover and scan the site's contact, about, team, support and imprint pages — where emails and phones usually live.",
                        "default": true
                    },
                    "sameDomainOnly": {
                        "title": "Stay on the same domain",
                        "type": "boolean",
                        "description": "Only follow internal links on the same domain (recommended).",
                        "default": true
                    },
                    "includePhones": {
                        "title": "Extract phone numbers",
                        "type": "boolean",
                        "description": "Extract phone numbers from tel: links, JSON-LD, and validated page text.",
                        "default": true
                    },
                    "includeSocials": {
                        "title": "Extract social profiles",
                        "type": "boolean",
                        "description": "Extract LinkedIn, Twitter/X, Facebook, Instagram, YouTube, TikTok, Pinterest, and GitHub profile links.",
                        "default": true
                    },
                    "includeAddress": {
                        "title": "Extract physical address",
                        "type": "boolean",
                        "description": "Extract a postal address from the site's structured data (Schema.org / JSON-LD) when published.",
                        "default": true
                    },
                    "onlyWithEmail": {
                        "title": "Only output sites with an email",
                        "type": "boolean",
                        "description": "Skip sites where no public email was found — keep only contactable leads.",
                        "default": false
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cap on the number of lead records (0 = no cap).",
                        "default": 0
                    },
                    "monitorMode": {
                        "title": "Monitor mode — only NEW / changed contacts",
                        "type": "boolean",
                        "description": "Only output sites whose contacts are new or changed since the last run with the same list of websites. Perfect for re-checking a prospect list on a schedule and catching newly-added emails, phones, or socials. (Uses a named key-value store to remember each site's contact fingerprint — it does not interfere with the Apify scheduler.)",
                        "default": false
                    },
                    "monitorStoreName": {
                        "title": "Monitor store name",
                        "type": "string",
                        "description": "Named key-value store used to remember previously-seen contacts for monitor mode. Use distinct names to track separate prospect lists independently.",
                        "default": "website-contact-monitor"
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 30,
                        "type": "integer",
                        "description": "How many sites to crawl in parallel.",
                        "default": 10
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Proxies to use. The default Apify proxy (datacenter) works for the vast majority of business websites.",
                        "default": {
                            "useApifyProxy": true
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
