# Recruiter Lead Finder – HR & Talent Acquisition Contacts (`scrapepilot/recruiter-lead-finder-hr-talent-acquisition-contacts`) Actor

Crawl company websites to find recruiters, HR managers, talent acquisition leads. Extract emails, LinkedIn, phones, Twitter. Smart prioritization, dedup across domains. Pay only for pages with new contacts ($2.50/1K)

- **URL**: https://apify.com/scrapepilot/recruiter-lead-finder-hr-talent-acquisition-contacts.md
- **Developed by:** [Scrape Pilot](https://apify.com/scrapepilot) (community)
- **Categories:** Lead generation, Jobs, Automation
- **Stats:** 4 total users, 2 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 recruiter lead finders

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

---
## 🎯 Recruiter Lead Finder – Extract HR & Talent Acquisition Contacts (Emails, LinkedIn, Phone)

**Crawl company websites to find recruiters, HR managers, talent acquisition specialists, and people ops contacts. Extract email addresses, LinkedIn profiles, phone numbers, Twitter handles – automatically deduplicated across domains.**  
Perfect for recruitment agencies, sales teams, B2B lead generation, and talent sourcing. Smart crawling prioritises contact pages, team directories, and “people” sections. Includes Playwright fallback for JavaScript‑heavy sites and checkpoint/resume.

---

### 💡 What is the Recruiter Lead Finder?

The **Recruiter Lead Finder** is an intelligent Apify actor that automatically discovers HR and talent acquisition contacts from any company website. It:

- Crawls a domain (configurable depth, default 40 pages) while staying on the same site
- Prioritises pages likely to contain contact info: `/contact`, `/team`, `/about`, `/people`, `/leadership`, `/careers`, `/recruit`, `/talent`
- Extracts **email addresses** (validated, de‑obfuscated, filtered from file extensions and year ranges)
- Extracts **LinkedIn profiles** (individual `/in/` and company `/company/` URLs)
- Extracts **phone numbers** (validated, rejecting dates and copyright years)
- Extracts **Twitter/X handles** (skipping share/intent links)
- Detects **job titles** matching HR/TA/People roles (Recruiter, Talent Acquisition, HR Manager, People Partner, Sourcer, etc.)
- Matches page content against **target keywords** (customisable)
- Outputs **two types of items**:
  1. **Page‑scan items** – one per crawled page, including all contacts found on that page.
  2. **Contact items** – one per unique contact (email, LinkedIn, phone, Twitter), deduplicated globally across all start URLs in the same run.

The actor uses **curl_cffi** with Chrome impersonation for fast HTTP requests and falls back to **Playwright** (headless Chromium) for JavaScript‑rendered pages. It respects `maxPagesPerDomain`, supports **checkpoint/resume**, and automatically skips locale‑specific pages (e.g., `/de/`, `/fr/`) to avoid duplicate content.

**Pricing:** Pay only for successfully crawled pages that contain **new contacts** (deduplicated). $2.50 per 1,000 contact‑bearing pages + $0.02 actor start. Failed pages cost nothing.

---

### 🚀 Key Features

| Feature | Description |
|---------|-------------|
| **Smart prioritisation** | Crawls `contact`, `team`, `about`, `people`, `leadership`, `careers`, `recruit`, `talent` pages first. |
| **HR/TA keyword matching** | Detects pages mentioning recruiter, talent acquisition, HR, people ops, sourcing, etc. |
| **Contact extraction** | Emails (mailto + obfuscated), LinkedIn profiles (in/company), phone numbers, Twitter handles. |
| **Job title detection** | Extracts specific HR roles (Recruiter, Talent Acquisition Specialist, HR Manager, People Partner, etc.). |
| **Global deduplication** | Across multiple start URLs – the same contact appears only once (saves money). |
| **Dual fetch engine** | Fast HTTP (`curl_cffi`) + Playwright fallback for JS‑heavy sites. |
| **Checkpoint & resume** | Saves progress after each page; resumes from last state if interrupted. |
| **Skip locale pages** | Ignores `/de/`, `/fr/`, `/zh-Hans/` variants to avoid crawling the same content multiple times. |
| **Residential proxy ready** | Bypass IP blocks (recommended for large crawls). |
| **Pay‑per‑result pricing** | $0.02 actor start + $2.50 per 1,000 pages that yield **new** contacts. Failed pages are free. |

---

### 📥 Input Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `startUrls` | array of objects | **Yes** | – | List of starting URLs, e.g., `[{"url": "https://stripe.com"}]`. |
| `targetKeywords` | array of strings | No | Built‑in list (recruiter, talent, hr, human resources, hiring, talent acquisition, people, people team, sourcer, recruiting, talent partner, people ops, hr manager) | Custom keywords to prioritise pages. |
| `maxPagesPerDomain` | integer | No | `40` | Maximum pages to crawl per domain. |
| `maxConcurrency` | integer | No | `20` | Number of concurrent HTTP requests. |
| `maxContactsPerPage` | integer | No | `100` | Limit extracted contacts per page. |
| `usePlaywrightFallback` | boolean | No | `true` | Use headless browser for pages that fail HTTP or have little content. |
| `skipLocalizedPages` | boolean | No | `true` | Skip URLs containing locale prefixes (`/de/`, `/fr/`). |
| `checkpointKey` | string | No | `""` | Custom checkpoint key to isolate state for different runs. |
| `proxyConfiguration` | object | No | – | Apify proxy configuration. Residential strongly recommended. |

#### Example Input

```json
{
  "startUrls": [
    {"url": "https://stripe.com"},
    {"url": "https://shopify.com"}
  ],
  "maxPagesPerDomain": 30,
  "maxConcurrency": 15,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"]
  }
}
````

***

### 📤 Output Fields

The actor pushes **two types of items** to the dataset:

#### 1. Page‑scan item (`record_type: "page_scan"`)

| Field | Type | Description |
|-------|------|-------------|
| `record_type` | string | `"page_scan"` |
| `company_domain` | string | Domain of the crawled website. |
| `source_url` | string | URL of the crawled page. |
| `page_title` | string | Extracted page title. |
| `meta_description` | string | Meta description (if any). |
| `matched_keywords` | array | Which target keywords were found on this page. |
| `job_titles` | array | Extracted HR/TA job titles from the page. |
| `emails` | array | Email addresses found. |
| `linkedin_profiles` | array | LinkedIn profile URLs. |
| `phone_numbers` | array | Phone numbers. |
| `twitter_handles` | array | Twitter/X profile URLs. |
| `new_contacts_found` | integer | Number of **new** contacts discovered on this page (globally deduplicated). |
| `page_preview` | string | First 800 characters of cleaned page text. |
| `status_code` | integer | HTTP status code (if any). |
| `error` | string | Error message if failed. |

#### 2. Contact item (`record_type: "contact"`)

| Field | Type | Description |
|-------|------|-------------|
| `record_type` | string | `"contact"` |
| `contact_type` | string | `email`, `linkedin_profile`, `phone`, `twitter_handle`. |
| `contact_value` | string | The actual contact (email, URL, phone number, Twitter handle). |
| `job_titles_on_page` | array | HR/TA job titles extracted from the page where the contact was found. |
| `company_domain` | string | Company domain. |
| `source_url` | string | URL where the contact was discovered. |
| `page_title` | string | Title of that page. |
| `matched_keywords` | array | Keywords matched on the page. |

#### Example Output (Page‑scan)

```json
{
  "record_type": "page_scan",
  "company_domain": "stripe.com",
  "source_url": "https://stripe.com/jobs",
  "page_title": "Jobs at Stripe",
  "meta_description": "Join Stripe and help build the economic infrastructure of the internet.",
  "matched_keywords": ["recruiter", "talent", "hiring", "careers"],
  "job_titles": ["Recruiter", "Talent Acquisition Partner"],
  "emails": ["talent@stripe.com"],
  "linkedin_profiles": ["https://linkedin.com/company/stripe"],
  "phone_numbers": [],
  "twitter_handles": [],
  "new_contacts_found": 2,
  "page_preview": "We are hiring...",
  "status_code": 200,
  "error": ""
}
```

#### Example Output (Contact)

```json
{
  "record_type": "contact",
  "contact_type": "email",
  "contact_value": "talent@stripe.com",
  "job_titles_on_page": ["Recruiter", "Talent Acquisition Partner"],
  "company_domain": "stripe.com",
  "source_url": "https://stripe.com/jobs",
  "page_title": "Jobs at Stripe",
  "matched_keywords": ["recruiter", "talent", "hiring", "careers"]
}
```

***

### 💰 Pricing

| Component | Price |
|-----------|-------|
| **Actor start (per run)** | **$0.02** |
| **Per successful page that yields new contacts** | **$0.0025** |
| **Per 1,000 such pages** | **$2.50** |

- You are charged **only for pages that are successfully fetched, parsed, and contain at least one *new* contact** (globally deduplicated across all start URLs in the same run).
- Pages that return errors, have no contacts, or contain only already‑seen contacts are **free**.
- Example: 500 pages with new contacts = $0.02 + (500 × $0.0025) = **$1.27**.
- Example: 2,500 pages with new contacts = $0.02 + (2,500 × $0.0025) = **$6.27**.

**Checkpoint/resume:** If the actor stops (spending limit, timeout, manual stop), you can restart – it will resume from the last saved state and **only charge for new pages with new contacts** that haven't been processed before.

***

### 🛠 How to Use on Apify

1. **Create a task** with this actor.
2. **Provide one or more start URLs** – these are the company websites you want to find recruiters for.
3. **Adjust `maxPagesPerDomain`** – 30–50 is usually enough to find all contact pages.
4. **Enable residential proxies** – strongly recommended to avoid being blocked.
5. **Run** – the actor crawls each domain, prioritising contact/team pages, extracts contacts, and pushes results.
6. **Export** – download the dataset as JSON, CSV, or Excel.

#### Running via API

```bash
curl -X POST "https://api.apify.com/v2/acts/your-username~recruiter-lead-finder/runs" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -d '{
    "startUrls": [{"url": "https://stripe.com"}],
    "maxPagesPerDomain": 30,
    "proxyConfiguration": {"useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"]}
  }'
```

***

### 🎯 Use Cases

| Use Case | How It Helps |
|----------|--------------|
| **Recruitment agencies** | Build lists of in‑house recruiters and TA professionals to pitch your staffing services. |
| **Sales teams (HR tech)** | Find decision‑makers for HR software, payroll, benefits, or talent platforms. |
| **B2B lead generation** | Enrich CRM with verified HR contact emails and LinkedIn profiles. |
| **Sourcing automation** | Automatically discover the right people to contact for candidate placements. |
| **Market research** | Analyse how companies structure their TA teams (titles, contact methods). |

***

### ❓ Frequently Asked Questions

**1. What exactly counts as a “successful page” for pricing?**\
A page is considered successful if:

- HTTP status is 200 (or successful redirect).
- The page is parsed and at least **one new, unique contact** (email, LinkedIn, phone, Twitter) is discovered that has **not** been seen in any previous page of the same run (across all start URLs).

**2. Can I run the actor without a proxy?**\
For a small number of domains (1–5) with few pages, datacenter IPs may work. For larger runs, residential proxies are strongly recommended to avoid rate limiting (429) and blocking (403).

**3. What does the “skipLocalizedPages” option do?**\
It prevents crawling URLs like `https://example.com/de/`, `https://example.com/fr/`, etc., which often contain the same content in different languages. This avoids duplicate processing and saves cost.

**4. How does the actor detect HR‑related job titles?**\
It scans the page text for patterns like:

- Recruiter
- Talent Acquisition (Specialist/Manager/Partner/Lead)
- HR Manager / Human Resources (Manager/Director/Business Partner)
- People Partner / People Operations
- Sourcer
- Hiring Manager
- Talent Partner

**5. Are phone numbers validated?**\
Yes. The actor rejects numbers that look like:

- Copyright year ranges (`2020-2024`)
- Bare 4‑digit years
- Date formats (`12/12/2024`)
- All‑digit strings without separators (e.g., `12345678` – too short/long or no formatting)
  Only well‑formatted numbers with 7–15 digits and appropriate punctuation are kept.

**6. What does “checkpoint/resume” mean?**\
The actor saves its state (which URLs have been processed, which contacts have been seen) to the key‑value store. If the run stops (e.g., spending limit reached), you can restart the same actor with the same input – it will continue from where it left off without re‑charging for already processed pages.

**7. Can I customise the target keywords?**\
Yes. Provide a `targetKeywords` array in the input. Only pages containing at least one of these keywords will be prioritised (though all pages are scanned for contacts).

**8. Why am I charged only for pages with *new* contacts?**\
To avoid paying for duplicate results (e.g., the same email appears on multiple pages). Once a contact is discovered, any subsequent page that contains it will not trigger a charge.

**9. What happens if the actor encounters a page that requires login?**\
The actor will likely receive a 403 or 302 redirect to a login page, which will be classified as a failure – you will not be charged.

**10. Can I use this actor to scrape individual LinkedIn profiles?**\
It extracts **LinkedIn profile URLs** (e.g., `linkedin.com/in/username`), but does not scrape those profiles themselves. For full LinkedIn profile scraping, see our [LinkedIn Profile Scraper](link).

***

***

### 🔍 SEO Keywords

`recruiter lead finder`, `HR contact extractor`, `talent acquisition email scraper`, `find recruiter emails`, `HR manager LinkedIn finder`, `people ops contact scraper`, `sourcer email extractor`, `talent partner discovery`, `B2B lead generation HR`, `recruitment automation`, `Apify HR scraper`, `company recruiter finder`

***

### 🔗 Related Actors

- **[Company Info Scraper – Contacts, Tech Stack, Social Profiles](https://apify.com/your-username/company-info-scraper)** – More detailed company profiling.
- **[LinkedIn Profile Scraper](https://apify.com/your-username/linkedin-profile-scraper)** – Extract full public LinkedIn profiles.
- **[Social Profile Extractor – Find Facebook, LinkedIn, Twitter](https://apify.com/your-username/social-profile-extractor)** – Discover social media links.

***

***

**Start finding recruiter contacts today – $0.02 per run + $2.50 per 1,000 pages with new contacts. Smart crawling, global dedup, proxy ready.**

````

# Actor input Schema

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

List of company websites to extract recruiter leads from.
## `maxPagesPerDomain` (type: `integer`):

How many pages to crawl per company (higher means deeper scanning).
## `targetKeywords` (type: `array`):

Keywords to match (e.g., HR, Recruiter). It will only save data if these words are present on the page.
## `proxyConfiguration` (type: `object`):

Select Residential Proxies to bypass bot protection.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://openai.com/"
    }
  ],
  "maxPagesPerDomain": 15,
  "targetKeywords": [
    "recruiter",
    "talent",
    "hr",
    "human resources",
    "hiring",
    "acquisition"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
````

# 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://openai.com/"
        }
    ],
    "targetKeywords": [
        "recruiter",
        "talent",
        "hr",
        "human resources",
        "hiring",
        "acquisition"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapepilot/recruiter-lead-finder-hr-talent-acquisition-contacts").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://openai.com/" }],
    "targetKeywords": [
        "recruiter",
        "talent",
        "hr",
        "human resources",
        "hiring",
        "acquisition",
    ],
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("scrapepilot/recruiter-lead-finder-hr-talent-acquisition-contacts").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://openai.com/"
    }
  ],
  "targetKeywords": [
    "recruiter",
    "talent",
    "hr",
    "human resources",
    "hiring",
    "acquisition"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call scrapepilot/recruiter-lead-finder-hr-talent-acquisition-contacts --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapepilot/recruiter-lead-finder-hr-talent-acquisition-contacts",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Recruiter Lead Finder – HR & Talent Acquisition Contacts",
        "description": "Crawl company websites to find recruiters, HR managers, talent acquisition leads. Extract emails, LinkedIn, phones, Twitter. Smart prioritization, dedup across domains. Pay only for pages with new contacts ($2.50/1K)",
        "version": "0.0",
        "x-build-id": "9b9M2Hca6QrPv1JVB"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapepilot~recruiter-lead-finder-hr-talent-acquisition-contacts/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapepilot-recruiter-lead-finder-hr-talent-acquisition-contacts",
                "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/scrapepilot~recruiter-lead-finder-hr-talent-acquisition-contacts/runs": {
            "post": {
                "operationId": "runs-sync-scrapepilot-recruiter-lead-finder-hr-talent-acquisition-contacts",
                "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/scrapepilot~recruiter-lead-finder-hr-talent-acquisition-contacts/run-sync": {
            "post": {
                "operationId": "run-sync-scrapepilot-recruiter-lead-finder-hr-talent-acquisition-contacts",
                "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": [
                    "startUrls"
                ],
                "properties": {
                    "startUrls": {
                        "title": "Company Website URLs",
                        "type": "array",
                        "description": "List of company websites to extract recruiter leads from.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "maxPagesPerDomain": {
                        "title": "Max Pages Per Domain",
                        "type": "integer",
                        "description": "How many pages to crawl per company (higher means deeper scanning).",
                        "default": 15
                    },
                    "targetKeywords": {
                        "title": "Target Roles / Keywords",
                        "type": "array",
                        "description": "Keywords to match (e.g., HR, Recruiter). It will only save data if these words are present on the page.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Select Residential Proxies to bypass bot protection."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
