# LinkedIn Profile Scraper (`afanasenko/linkedin-profile-api-scraper`) Actor

Enrich LinkedIn profiles and companies in bulk — paste URLs or search by keyword/industry/location. Get structured data with name, headline, experience, education, follower count, company size, industry, and 70+ more fields.

- **URL**: https://apify.com/afanasenko/linkedin-profile-api-scraper.md
- **Developed by:** [Andrey Afanasenko](https://apify.com/afanasenko) (community)
- **Categories:** Lead generation, Social media, Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

$30.00 / 1,000 profile analyzeds

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

## LinkedIn Profile Scraper

[![Apify Actor](https://apify.com/actor-badge?actor=afanasenko/linkedin-profile-api-scraper)](https://apify.com/afanasenko/linkedin-profile-api-scraper)

> **Enrich LinkedIn profiles and companies in bulk — paste URLs or search by keyword/industry/company. Get structured data with name, headline, experience, education, follower count, company size, industry, and 70+ more fields.**

### 🎯 What it does

You feed the actor LinkedIn URLs (profiles or companies) OR a search criteria (keyword + optional industry, or "decision-makers at this company") — it returns clean, structured rows ready for a CRM, sheet, or downstream agent.

- **44 fields per profile** — `full_name`, `headline`, `about`, current `job_title` + `company`, full `experiences[]` / `educations[]`, `follower_count`, verification flags, parsed location, current-employer enrichment (industry, employee count, year founded).
- **26 fields per company** — `company_name`, `description`, `tagline`, `industries[]`, `specialties[]`, `employee_count`, `employee_range`, `year_founded`, `website`, `logo_url`, `follower_count`, full HQ address, `locations[]`, `affiliated_companies[]`.
- **4 operation modes** — Lookup Profile by URL, Lookup Company by URL/Domain, Search Decision-Makers at given companies, Search Companies by keyword.
- **7 advanced filters** — follower range, must-have email/phone, open-to-work, country, industry — applied across all modes.

### 📦 What you get — output sample

```json
{
  "entity_type": "profile",
  "input": "https://www.linkedin.com/in/satyanadella/",
  "linkedin_url": "https://www.linkedin.com/in/satyanadella",
  "full_name": "Satya Nadella",
  "first_name": "Satya",
  "last_name": "Nadella",
  "headline": "Chairman and CEO at Microsoft",
  "job_title": "Chairman and CEO",
  "company": "Microsoft",
  "company_industry": "Software Development",
  "company_employee_count": 228000,
  "follower_count": 11489320,
  "city": "Redmond",
  "country": "United States",
  "is_premium": true,
  "is_verified": true,
  "experiences": [ { "title": "CEO", "company": "Microsoft", "starts_at": "2014-02-01" } ],
  "educations": [ { "school": "University of Chicago", "degree": "MBA" } ],
  "profile_image_url": "https://media.licdn.com/dms/image/.../satya-nadella.jpg"
}
````

```json
{
  "entity_type": "company",
  "input": "microsoft.com",
  "linkedin_url": "https://www.linkedin.com/company/microsoft",
  "company_name": "Microsoft",
  "tagline": "Empowering every person and organization on the planet to achieve more.",
  "industries": ["Software Development"],
  "specialties": ["Software", "Cloud", "AI", "Productivity"],
  "employee_count": 228000,
  "employee_range": "10,001+",
  "year_founded": 1975,
  "follower_count": 25190000,
  "domain": "microsoft.com",
  "website": "https://news.microsoft.com",
  "logo_url": "https://media.licdn.com/dms/image/.../microsoft-logo.png",
  "hq_city": "Redmond",
  "hq_country": "US"
}
```

Missing optional fields come back as the string `"N/A"` — every always-emitted column appears in every row, so downstream tools (Sheets / Airtable / CSV) don't have to special-case missing values. See [.actor/dataset\_schema.json](.actor/dataset_schema.json) for the full per-column declaration.

### ⚡ Quick start

Minimal input that works on the free plan:

```json
{
  "operationMode": "lookupByUrl",
  "profileUrls": ["https://www.linkedin.com/in/satyanadella/"]
}
```

Run, open **Storage → Dataset**, see one enriched row. Add more URLs to scale up.

### 🧭 How to use it

1. **Pick the mode** that matches what you have: known LinkedIn URLs (Modes 1/2) vs criteria-based search (Modes 3/4).
2. **Fill the mode's fields** — URL list, or keyword / company URL / job title.
3. **(Optional) tighten the output** with Advanced filtering — minimum followers, must-have email, country/industry match — to drop irrelevant rows before they hit your CRM.

### ⭐ Choose your mode

#### 🎯 Mode 1 — Lookup Profile by URL

You paste LinkedIn profile URLs, the actor returns one fully-enriched profile row per URL.

**Input:**

```json
{
  "operationMode": "lookupByUrl",
  "profileUrls": [
    "https://www.linkedin.com/in/satyanadella/",
    "https://www.linkedin.com/in/jeffweiner08/"
  ],
  "maxItemsMode1": 100
}
```

**Output:** 1 row per URL, 44 fields per row.

**Cost control (Mode 1):** `maxItemsMode1` caps how many profiles you'll pay for in this run. Free plan ceilings to 50 items regardless. Trial runs auto-cap at 10.

#### 🏢 Mode 2 — Lookup Company by URL or Domain

Paste LinkedIn company URLs OR raw domains — each input becomes one company row. Domains are resolved against the company database; URLs are read directly.

**Input:**

```json
{
  "operationMode": "companyLookup",
  "companyInputs": [
    "https://www.linkedin.com/company/microsoft/",
    "anthropic.com",
    "stripe.com"
  ],
  "maxItemsMode2": 50
}
```

**Output:** 1 row per input, 26 fields per row.

**Cost control (Mode 2):** `maxItemsMode2`. Same free-plan / trial caps as Mode 1.

#### 🔍 Mode 3 — Search Leads (Decision-Makers at given companies)

Give the actor target company URLs + an optional job-title filter. It pulls decision-makers / employees matching the title.

**Input:**

```json
{
  "operationMode": "searchLead",
  "searchLeadCompanyUrls": [
    "https://www.linkedin.com/company/microsoft/",
    "https://www.linkedin.com/company/anthropic/"
  ],
  "searchLeadJobTitle": "engineering manager",
  "searchLeadCount": 25,
  "maxItemsMode3": 50
}
```

**Output:** Slim profile rows for each match (full\_name, headline, location, company, job\_title, linkedin\_url, profile\_id). Run a Mode 1 follow-up pass on the returned URLs if you want full 44-field enrichment.

**Cost control (Mode 3):** `maxItemsMode3` caps total leads returned across all source companies. `searchLeadCount` caps per-company.

#### 🏭 Mode 4 — Search Companies (by keyword)

Free-text keyword search over the LinkedIn company graph, optionally narrowed to specific industries.

**Input:**

```json
{
  "operationMode": "searchCompany",
  "searchCompanyKeywords": "saas analytics",
  "searchCompanyIndustries": ["software", "information technology"],
  "searchCompanyCount": 25,
  "maxItemsMode4": 50
}
```

**Output:** Slim company rows for each match (company\_name, tagline, domain, industries, employee\_count, linkedin\_url). Use Mode 2 follow-up for full 26-field enrichment.

**Cost control (Mode 4):** `maxItemsMode4` caps total companies returned.

### 🛠 Input

| Section | Fields |
|---|---|
| Mode picker | `operationMode` (required) |
| Mode 1 | `profileUrls`, `maxItemsMode1` |
| Mode 2 | `companyInputs`, `maxItemsMode2` |
| Mode 3 | `searchLeadCompanyUrls`, `searchLeadJobTitle`, `searchLeadCount`, `maxItemsMode3` |
| Mode 4 | `searchCompanyKeywords`, `searchCompanyIndustries`, `searchCompanyCount`, `maxItemsMode4` |
| Advanced filtering | `minFollowers`, `maxFollowers`, `mustHaveEmail`, `mustHavePhone`, `openToWorkOnly`, `countryFilter`, `industryFilter` |

See [.actor/input\_schema.json](.actor/input_schema.json) for the authoritative declaration.

### 💰 Pricing

Pay-per-event. You're charged once per fetched record, regardless of mode.

| Event | Price | Trigger |
|---|---|---|
| **Profile Analyzed** | **$0.030** | Each profile or company successfully retrieved from upstream and processed by the actor |

**Examples:**

- 100 profiles in Mode 1 → 100 × $0.030 = **$3.00**
- 5 companies in Mode 2 → 5 × $0.030 = **$0.15**
- Mode 3 with 4 target companies × 25 leads each = 100 leads → **$3.00**
- Mode 4 returning 25 company matches → 25 × $0.030 = **$0.75**

**Filters and billing:** Filters narrow your **output**, not your **bill**. The paid event fires when the upstream returns the row — even if your filter then drops it. Use cost-control caps (`maxItemsModeN`) to bound spend; use filters to narrow signal.

### 🆓 Free vs paid plan

| | Free | Paid |
|---|---|---|
| Items per run | 50 max | unlimited (capped only by your cost-control field) |
| Trial run cap | 10 (auto, when input matches the example) | n/a |
| All 4 modes | ✅ | ✅ |
| Advanced filters | ✅ | ✅ |
| Live status page | ✅ | ✅ |

### 🧪 Filter recipes

Drop these straight into the input editor.

**Find SaaS founders in the US (Mode 4 → Mode 3 → Mode 1):**

Step 1 — find SaaS companies:

```json
{
  "operationMode": "searchCompany",
  "searchCompanyKeywords": "saas",
  "searchCompanyIndustries": ["software"],
  "countryFilter": "United States",
  "searchCompanyCount": 50
}
```

Step 2 — find founders at those companies (paste company URLs from Step 1):

```json
{
  "operationMode": "searchLead",
  "searchLeadCompanyUrls": ["...", "...", "..."],
  "searchLeadJobTitle": "founder",
  "searchLeadCount": 25
}
```

**Engineering hiring at top tech companies (Mode 3 with email-only filter):**

```json
{
  "operationMode": "searchLead",
  "searchLeadCompanyUrls": [
    "https://www.linkedin.com/company/microsoft/",
    "https://www.linkedin.com/company/google/",
    "https://www.linkedin.com/company/anthropic/"
  ],
  "searchLeadJobTitle": "engineering manager",
  "mustHaveEmail": true,
  "minFollowers": 500,
  "searchLeadCount": 50
}
```

**Bulk enrich your CRM list (Mode 1 with relevance filter):**

```json
{
  "operationMode": "lookupByUrl",
  "profileUrls": ["...100 URLs..."],
  "minFollowers": 1000,
  "industryFilter": "software"
}
```

### 📡 Live status & storage records

Every run writes structured JSON records to its key-value store, AND serves a live status page over HTTP while running.

| Key | Format | Content |
|---|---|---|
| `RUN_SUMMARY` | JSON | End-of-run aggregate: stop reason, mode, processedCount, paidEventsFired, itemsScraped/Filtered, demoCapped, wallClockSec |
| `USER_MESSAGE` | JSON | First-paid-run welcome / 3rd-run check-in (paid plan) |
| `FREE_LIMITS_APPLIED` | JSON | Which free-plan caps fired (e.g. `free_plan_50_items`) |
| `SKIPPED_ITEMS` | JSON | Inputs we couldn't process + reason |
| `status.html` | HTML | Live progress page (auto-refreshes every 3s) |

While the run is active, the live page is reachable at the actor's container URL (Apify shows it under "Live view"). For programmatic monitoring:

```bash
## Poll JSON status
curl https://<run-container-url>/api/status
```

Returns `{ isRunning, progress: {total, analyzed, saved, skippedByFilters, percentage}, cost: {spent, currency}, timing: {elapsedSeconds, startedAt}, settings: {mode, plan} }`.

### 🤖 Programmatic / API use

```bash
## Trigger a run via Apify API
curl -X POST "https://api.apify.com/v2/acts/afanasenko~linkedin-profile-api-scraper/runs?token=$APIFY_TOKEN" \
  -H 'Content-Type: application/json' \
  -d '{
    "operationMode": "lookupByUrl",
    "profileUrls": ["https://www.linkedin.com/in/satyanadella/"]
  }'
```

Fetch dataset items:

```bash
curl "https://api.apify.com/v2/datasets/<datasetId>/items?token=$APIFY_TOKEN&clean=1&format=json"
```

Read RUN\_SUMMARY:

```bash
curl "https://api.apify.com/v2/key-value-stores/<storeId>/records/RUN_SUMMARY?token=$APIFY_TOKEN"
```

### ❓ FAQ

**Are filters charged?**
Filters narrow output, not bill. The paid event fires when a row is fetched; filtering it out doesn't refund. Use `maxItemsModeN` to cap spend.

**Can I scrape private profiles?**
No. Only public LinkedIn data is available. Profiles set to private return "Profile not found" with no charge.

**What's the difference between Mode 3 (slim) and Mode 1 (full)?**
Mode 3 returns slim rows (10 fields per match) from the search index — cheap way to discover relevant profiles. Feed those URLs back into Mode 1 for full 44-field enrichment.

**Is data live?**
Yes. Each lookup hits LinkedIn's public profile in real time (no stale cache).

**Why do I sometimes see a row where most fields are "N/A"?**
For Mode 3/4 search results, the slim row holds only the search-index fields. Re-run those URLs through Mode 1 / Mode 2 to fill the full schema.

**How do I pause / resume a long run?**
Apify's Resurrect feature works — the actor doesn't keep internal state across resurrections, so each resurrection starts fresh from the input. Better pattern for big lists: split inputs into batches of 500-1000 per run.

### 🔗 Other LinkedIn / lead-gen scrapers (same author)

| You start with… | You want to find… | Use this actor |
|---|---|---|
| LinkedIn profile URLs | Bulk-enrich profiles + companies | **This actor** — Mode 1 / Mode 2 |
| Search criteria (keyword / company / job title) | Decision-makers + companies via search index | **This actor** — Mode 3 / Mode 4 |
| Instagram handles | Profile data + 5 discovery modes (followers, similar, keyword, location) | [Instagram Profile Scraper](https://apify.com/afanasenko/instagram-profile-scraper) |
| TikTok profile / hashtag | Profile data + posts | [TikTok Profile Scraper](https://apify.com/afanasenko/tiktok-profile-scraper) |
| YouTube channel URL / handle | Channel + video metadata | [YouTube Channel Scraper](https://apify.com/afanasenko/youtube-channel-scraper) |
| US ZIP / address | Property listings + market data | [Zillow Scraper](https://apify.com/afanasenko/zillow-scraper) |

### 🛟 Support & feedback

Found a bug? Have a feature request? Open an issue on the actor's Apify Store page **Issues** tab — that's the canonical channel and I get a notification on every new issue.

### 💡 Tips & Best Practices

#### Getting max results

- For Mode 3 (Search Leads): job-title filter is fuzzy — `engineer` matches `software engineer`, `staff engineer`, `principal engineer`. Use specific titles (`VP of engineering`) when you want narrow.
- For Mode 4 (Search Companies): keywords are AND-style — `saas analytics` matches companies that mention both. Try single keywords first to gauge volume.
- For Mode 1: company-URL inputs auto-route through company lookup, so you can mix profile and company URLs in one run.

#### Cost optimization

- Use `maxItemsModeN` aggressively when testing — 5-10 first to validate output, then scale up.
- Mode 3 / Mode 4 are cheaper per discovery: 1 search call returns 25-100 slim rows for the same $0.030/row that Mode 1 / Mode 2 charge per fetch.
- Filters don't reduce billing but reduce noise — apply `industryFilter` + `countryFilter` for tighter targeting BEFORE pasting URLs into a Mode 1 follow-up pass.

#### Performance

- Large Mode 1 batches (500+) take 2-3 minutes; the actor processes profiles serially to respect upstream rate limits. Live status page shows progress.
- Mode 3 polling waits up to 60s for upstream search to complete — most queries return in 5-10s. If polling times out, reduce `searchLeadCount`.

#### Data quality

- LinkedIn profiles update daily; running the same URL twice in a week may return slightly different `follower_count` / `headline`.
- "N/A" is intentional — always-emitted columns let you write `IF(field == "N/A", ...)` instead of null-checking.
- Search results (Mode 3 / Mode 4) are slim by design — feed URLs into Mode 1 / Mode 2 for full enrichment.

### ⚖️ Disclaimer

This actor scrapes only **publicly available** LinkedIn data. You are responsible for using the data in accordance with LinkedIn's Terms of Service, applicable privacy laws (GDPR, CCPA), and ethical-use guidelines. The actor does not scrape private profiles, paid LinkedIn features (Sales Navigator), or content behind login walls.

# Actor input Schema

## `operationMode` (type: `string`):

Select what you want to look up. The fields appearing below depend on this choice.

## `profileUrls` (type: `array`):

LinkedIn profile URLs (one per line). Format: https://www.linkedin.com/in/<username>/

## `maxItemsMode1` (type: `integer`):

Hard cost ceiling for Mode 1 — each enriched profile is one paid event. Free plan ceiling: 50 items regardless of this value. 0 = unlimited (paid plan only). Default 0.

## `companyInputs` (type: `array`):

LinkedIn company URLs (https://www.linkedin.com/company/<slug>/) OR company domains (microsoft.com). Mix both freely — each line is auto-detected and routed to the right lookup.

## `maxItemsMode2` (type: `integer`):

Hard cost ceiling for Mode 2. Free plan ceiling: 50 items. 0 = unlimited. Default 0.

## `searchLeadCompanyUrls` (type: `array`):

LinkedIn company URLs to search decision-makers at (e.g. https://www.linkedin.com/company/microsoft/). For each company, the actor finds employees matching the optional job title filter.

## `searchLeadJobTitle` (type: `string`):

Filter results to leads whose job title matches this text (e.g. "data scientist", "VP sales", "head of marketing"). Leave blank to return all decision-makers at the target companies.

## `searchLeadCount` (type: `integer`):

How many leads to retrieve per target company. Max 100. Default 25.

## `maxItemsMode3` (type: `integer`):

Hard cost ceiling for Mode 3 — each retrieved lead is one paid event. Free plan ceiling: 50 items. 0 = unlimited. Default 0.

## `searchCompanyKeywords` (type: `string`):

Free-text keywords describing the companies you want to find (e.g. "saas analytics", "renewable energy", "e-commerce"). One search keyword string per run.

## `searchCompanyIndustries` (type: `array`):

Restrict company search to specific industries. Multi-select; leave empty to search across all industries.

## `searchCompanyCount` (type: `integer`):

How many companies to retrieve. Max 100. Default 25.

## `maxItemsMode4` (type: `integer`):

Hard cost ceiling for Mode 4 — each retrieved company is one paid event. Free plan ceiling: 50 items. 0 = unlimited. Default 0.

## `minFollowers` (type: `integer`):

Skip records with fewer followers than this. 0 = no minimum. Applies to all modes.

## `maxFollowers` (type: `integer`):

Skip records with more followers than this. 0 = no maximum.

## `mustHaveEmail` (type: `boolean`):

Drop rows whose email field is missing or 'N/A'. Useful for outbound campaigns.

## `mustHavePhone` (type: `boolean`):

Drop rows whose phone field is missing or 'N/A'.

## `openToWorkOnly` (type: `boolean`):

Keep only profiles flagged as #OpenToWork. Profile-only filter; ignored in company modes.

## `countryFilter` (type: `string`):

Keep only rows whose country matches. Leave blank to skip filtering.

## `industryFilter` (type: `string`):

Keep only rows whose industry matches. Leave blank to skip filtering.

## Actor input object example

```json
{
  "operationMode": "lookupByUrl",
  "profileUrls": [],
  "maxItemsMode1": 0,
  "companyInputs": [],
  "maxItemsMode2": 0,
  "searchLeadCompanyUrls": [],
  "searchLeadJobTitle": "",
  "searchLeadCount": 25,
  "maxItemsMode3": 0,
  "searchCompanyKeywords": "",
  "searchCompanyIndustries": [],
  "searchCompanyCount": 25,
  "maxItemsMode4": 0,
  "minFollowers": 0,
  "maxFollowers": 0,
  "mustHaveEmail": false,
  "mustHavePhone": false,
  "openToWorkOnly": false,
  "countryFilter": "",
  "industryFilter": ""
}
```

# Actor output Schema

## `liveStatus` (type: `string`):

No description

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

No description

## `runSummary` (type: `string`):

Aggregate run statistics — counts, mode, paid events fired, wall-clock time.

## `userMessage` (type: `string`):

Onboarding tip, paid-plan welcome, or diagnostic message — only present when the run has something to surface.

## `freeLimitsApplied` (type: `string`):

Free-tier caps that affected this run. Empty if no caps applied or user is on a paid plan.

# 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 = {
    "operationMode": "lookupByUrl"
};

// Run the Actor and wait for it to finish
const run = await client.actor("afanasenko/linkedin-profile-api-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 = { "operationMode": "lookupByUrl" }

# Run the Actor and wait for it to finish
run = client.actor("afanasenko/linkedin-profile-api-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 '{
  "operationMode": "lookupByUrl"
}' |
apify call afanasenko/linkedin-profile-api-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "LinkedIn Profile Scraper",
        "description": "Enrich LinkedIn profiles and companies in bulk — paste URLs or search by keyword/industry/location. Get structured data with name, headline, experience, education, follower count, company size, industry, and 70+ more fields.",
        "version": "0.0",
        "x-build-id": "26mDw2VaZadzJTFPR"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/afanasenko~linkedin-profile-api-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-afanasenko-linkedin-profile-api-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/afanasenko~linkedin-profile-api-scraper/runs": {
            "post": {
                "operationId": "runs-sync-afanasenko-linkedin-profile-api-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/afanasenko~linkedin-profile-api-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-afanasenko-linkedin-profile-api-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",
                "required": [
                    "operationMode"
                ],
                "properties": {
                    "operationMode": {
                        "title": "1. Choose Operation Mode",
                        "enum": [
                            "lookupByUrl",
                            "companyLookup",
                            "searchLead",
                            "searchCompany"
                        ],
                        "type": "string",
                        "description": "Select what you want to look up. The fields appearing below depend on this choice."
                    },
                    "profileUrls": {
                        "title": "Profile URLs",
                        "type": "array",
                        "description": "LinkedIn profile URLs (one per line). Format: https://www.linkedin.com/in/<username>/",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItemsMode1": {
                        "title": "Max profiles to enrich (Mode 1 cost control)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cost ceiling for Mode 1 — each enriched profile is one paid event. Free plan ceiling: 50 items regardless of this value. 0 = unlimited (paid plan only). Default 0.",
                        "default": 0
                    },
                    "companyInputs": {
                        "title": "Companies (URLs or domains)",
                        "type": "array",
                        "description": "LinkedIn company URLs (https://www.linkedin.com/company/<slug>/) OR company domains (microsoft.com). Mix both freely — each line is auto-detected and routed to the right lookup.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItemsMode2": {
                        "title": "Max companies to enrich (Mode 2 cost control)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cost ceiling for Mode 2. Free plan ceiling: 50 items. 0 = unlimited. Default 0.",
                        "default": 0
                    },
                    "searchLeadCompanyUrls": {
                        "title": "Target company URLs",
                        "type": "array",
                        "description": "LinkedIn company URLs to search decision-makers at (e.g. https://www.linkedin.com/company/microsoft/). For each company, the actor finds employees matching the optional job title filter.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "searchLeadJobTitle": {
                        "title": "Job title filter (optional)",
                        "type": "string",
                        "description": "Filter results to leads whose job title matches this text (e.g. \"data scientist\", \"VP sales\", \"head of marketing\"). Leave blank to return all decision-makers at the target companies.",
                        "default": ""
                    },
                    "searchLeadCount": {
                        "title": "Leads per company",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "How many leads to retrieve per target company. Max 100. Default 25.",
                        "default": 25
                    },
                    "maxItemsMode3": {
                        "title": "Max leads to enrich (Mode 3 cost control)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cost ceiling for Mode 3 — each retrieved lead is one paid event. Free plan ceiling: 50 items. 0 = unlimited. Default 0.",
                        "default": 0
                    },
                    "searchCompanyKeywords": {
                        "title": "Company keywords",
                        "type": "string",
                        "description": "Free-text keywords describing the companies you want to find (e.g. \"saas analytics\", \"renewable energy\", \"e-commerce\"). One search keyword string per run.",
                        "default": ""
                    },
                    "searchCompanyIndustries": {
                        "title": "Industry filter (optional)",
                        "type": "array",
                        "description": "Restrict company search to specific industries. Multi-select; leave empty to search across all industries.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "Abrasives and Nonmetallic Minerals Manufacturing",
                                "Accessible Architecture and Design",
                                "Accessible Hardware Manufacturing",
                                "Accommodation Services",
                                "Accounting",
                                "Administration of Justice",
                                "Administrative and Support Services",
                                "Advertising Services",
                                "Agricultural Chemical Manufacturing",
                                "Agriculture, Construction, Mining Machinery Manufacturing",
                                "Air, Water, and Waste Program Management",
                                "Airlines and Aviation",
                                "Alternative Dispute Resolution",
                                "Alternative Fuel Vehicle Manufacturing",
                                "Alternative Medicine",
                                "Ambulance Services",
                                "Amusement Parks and Arcades",
                                "Animal Feed Manufacturing",
                                "Animation and Post-production",
                                "Apparel Manufacturing",
                                "Appliances, Electrical, and Electronics Manufacturing",
                                "Architectural and Structural Metal Manufacturing",
                                "Architecture and Planning",
                                "Armed Forces",
                                "Artificial Rubber and Synthetic Fiber Manufacturing",
                                "Artists and Writers",
                                "Audio and Video Equipment Manufacturing",
                                "Automation Machinery Manufacturing",
                                "Aviation and Aerospace Component Manufacturing",
                                "Baked Goods Manufacturing",
                                "Banking",
                                "Bars, Taverns, and Nightclubs",
                                "Bed-and-Breakfasts, Hostels, Homestays",
                                "Beverage Manufacturing",
                                "Biomass Electric Power Generation",
                                "Biotechnology Research",
                                "Blockchain Services",
                                "Blogs",
                                "Boilers, Tanks, and Shipping Container Manufacturing",
                                "Book and Periodical Publishing",
                                "Book Publishing",
                                "Breweries",
                                "Broadcast Media Production and Distribution",
                                "Building Construction",
                                "Building Equipment Contractors",
                                "Building Finishing Contractors",
                                "Building Structure and Exterior Contractors",
                                "Business Consulting and Services",
                                "Business Content",
                                "Business Intelligence Platforms",
                                "Cable and Satellite Programming",
                                "Capital Markets",
                                "Caterers",
                                "Chemical Manufacturing",
                                "Chemical Raw Materials Manufacturing",
                                "Child Day Care Services",
                                "Chiropractors",
                                "Circuses and Magic Shows",
                                "Civic and Social Organizations",
                                "Civil Engineering",
                                "Claims Adjusting, Actuarial Services",
                                "Clay and Refractory Products Manufacturing",
                                "Climate Data and Analytics",
                                "Climate Technology Product Manufacturing",
                                "Coal Mining",
                                "Collection Agencies",
                                "Commercial and Industrial Equipment Rental",
                                "Commercial and Industrial Machinery Maintenance",
                                "Commercial and Service Industry Machinery Manufacturing",
                                "Communications Equipment Manufacturing",
                                "Community Development and Urban Planning",
                                "Community Services",
                                "Computer and Network Security",
                                "Computer Games",
                                "Computer Hardware Manufacturing",
                                "Computer Networking Products",
                                "Computers and Electronics Manufacturing",
                                "Conservation Programs",
                                "Construction",
                                "Construction Hardware Manufacturing",
                                "Consumer Goods Rental",
                                "Consumer Services",
                                "Correctional Institutions",
                                "Cosmetology and Barber Schools",
                                "Courts of Law",
                                "Credit Intermediation",
                                "Cutlery and Handtool Manufacturing",
                                "Dairy Product Manufacturing",
                                "Dance Companies",
                                "Data Infrastructure and Analytics",
                                "Data Security Software Products",
                                "Defense and Space Manufacturing",
                                "Dentists",
                                "Design Services",
                                "Desktop Computing Software Products",
                                "Digital Accessibility Services",
                                "Distilleries",
                                "E-Learning Providers",
                                "Economic Programs",
                                "Education",
                                "Education Administration Programs",
                                "Electric Lighting Equipment Manufacturing",
                                "Electric Power Generation",
                                "Electric Power Transmission, Control, and Distribution",
                                "Electrical Equipment Manufacturing",
                                "Electronic and Precision Equipment Maintenance",
                                "Embedded Software Products",
                                "Emergency and Relief Services",
                                "Engineering Services",
                                "Engines and Power Transmission Equipment Manufacturing",
                                "Entertainment Providers",
                                "Environmental Quality Programs",
                                "Environmental Services",
                                "Equipment Rental Services",
                                "Events Services",
                                "Executive Offices",
                                "Executive Search Services",
                                "Fabricated Metal Products",
                                "Facilities Services",
                                "Family Planning Centers",
                                "Farming",
                                "Farming, Ranching, Forestry",
                                "Fashion Accessories Manufacturing",
                                "Financial Services",
                                "Fine Arts Schools",
                                "Fire Protection",
                                "Fisheries",
                                "Flight Training",
                                "Food and Beverage Manufacturing",
                                "Food and Beverage Retail",
                                "Food and Beverage Services",
                                "Footwear and Leather Goods Repair",
                                "Footwear Manufacturing",
                                "Forestry and Logging",
                                "Fossil Fuel Electric Power Generation",
                                "Freight and Package Transportation",
                                "Fruit and Vegetable Preserves Manufacturing",
                                "Fuel Cell Manufacturing",
                                "Fundraising",
                                "Funds and Trusts",
                                "Furniture and Home Furnishings Manufacturing",
                                "Gambling Facilities and Casinos",
                                "Geothermal Electric Power Generation",
                                "Glass, Ceramics and Concrete Manufacturing",
                                "Glass Product Manufacturing",
                                "Golf Courses and Country Clubs",
                                "Government Administration",
                                "Government Relations Services",
                                "Graphic Design",
                                "Ground Passenger Transportation",
                                "Health and Human Services",
                                "Higher Education",
                                "Highway, Street, and Bridge Construction",
                                "Historical Sites",
                                "Holding Companies",
                                "Home Health Care Services",
                                "Horticulture",
                                "Hospitality",
                                "Hospitals",
                                "Hospitals and Health Care",
                                "Hotels and Motels",
                                "Household and Institutional Furniture Manufacturing",
                                "Household Appliance Manufacturing",
                                "Household Services",
                                "Housing and Community Development",
                                "Housing Programs",
                                "Human Resources Services",
                                "HVAC and Refrigeration Equipment Manufacturing",
                                "Hydroelectric Power Generation",
                                "Individual and Family Services",
                                "Industrial Machinery Manufacturing",
                                "Industry Associations",
                                "Information Services",
                                "Insurance",
                                "Insurance Agencies and Brokerages",
                                "Insurance and Employee Benefit Funds",
                                "Insurance Carriers",
                                "Interior Design",
                                "International Affairs",
                                "International Trade and Development",
                                "Internet Marketplace Platforms",
                                "Internet News",
                                "Internet Publishing",
                                "Interurban and Rural Bus Services",
                                "Investment Advice",
                                "Investment Banking",
                                "Investment Management",
                                "IT Services and IT Consulting",
                                "IT System Custom Software Development",
                                "IT System Data Services",
                                "IT System Design Services",
                                "IT System Installation and Disposal",
                                "IT System Operations and Maintenance",
                                "IT System Testing and Evaluation",
                                "IT System Training and Support",
                                "Janitorial Services",
                                "Landscaping Services",
                                "Language Schools",
                                "Laundry and Drycleaning Services",
                                "Law Enforcement",
                                "Law Practice",
                                "Leasing Non-residential Real Estate",
                                "Leasing Residential Real Estate",
                                "Leather Product Manufacturing",
                                "Legal Services",
                                "Legislative Offices",
                                "Libraries",
                                "Lime and Gypsum Products Manufacturing",
                                "Loan Brokers",
                                "Machinery Manufacturing",
                                "Magnetic and Optical Media Manufacturing",
                                "Manufacturing",
                                "Maritime Transportation",
                                "Market Research",
                                "Marketing Services",
                                "Mattress and Blinds Manufacturing",
                                "Measuring and Control Instrument Manufacturing",
                                "Meat Products Manufacturing",
                                "Media and Telecommunications",
                                "Media Production",
                                "Medical and Diagnostic Laboratories",
                                "Medical Equipment Manufacturing",
                                "Medical Practices",
                                "Mental Health Care",
                                "Metal Ore Mining",
                                "Metal Treatments",
                                "Metal Valve, Ball, and Roller Manufacturing",
                                "Metalworking Machinery Manufacturing",
                                "Military and International Affairs",
                                "Mining",
                                "Mobile Computing Software Products",
                                "Mobile Food Services",
                                "Mobile Gaming Apps",
                                "Motor Vehicle Manufacturing",
                                "Motor Vehicle Parts Manufacturing",
                                "Movies and Sound Recording",
                                "Movies, Videos and Sound",
                                "Museums",
                                "Museums, Historical Sites, and Zoos",
                                "Musicians",
                                "Nanotechnology Research",
                                "Natural Gas Distribution",
                                "Natural Gas Extraction",
                                "Newspaper Publishing",
                                "Non-profit Organizations",
                                "Nonmetallic Mineral Mining",
                                "Nonresidential Building Construction",
                                "Nuclear Electric Power Generation",
                                "Nursing Homes and Residential Care Facilities",
                                "Office Administration",
                                "Office Furniture and Fixtures Manufacturing",
                                "Oil and Coal Product Manufacturing",
                                "Oil and Gas",
                                "Oil Extraction",
                                "Oil, Gas, and Mining",
                                "Online and Mail Order Retail",
                                "Online Audio and Video Media",
                                "Operations Consulting",
                                "Optometrists",
                                "Outpatient Care Centers",
                                "Outsourcing and Offshoring Consulting",
                                "Packaging and Containers Manufacturing",
                                "Paint, Coating, and Adhesive Manufacturing",
                                "Paper and Forest Product Manufacturing",
                                "Pension Funds",
                                "Performing Arts",
                                "Performing Arts and Spectator Sports",
                                "Periodical Publishing",
                                "Personal and Laundry Services",
                                "Personal Care Product Manufacturing",
                                "Personal Care Services",
                                "Pet Services",
                                "Pharmaceutical Manufacturing",
                                "Philanthropic Fundraising Services",
                                "Photography",
                                "Physical, Occupational and Speech Therapists",
                                "Physicians",
                                "Pipeline Transportation",
                                "Plastics and Rubber Product Manufacturing",
                                "Plastics Manufacturing",
                                "Political Organizations",
                                "Postal Services",
                                "Primary and Secondary Education",
                                "Primary Metal Manufacturing",
                                "Printing Services",
                                "Professional Organizations",
                                "Professional Services",
                                "Professional Training and Coaching",
                                "Public Assistance Programs",
                                "Public Health",
                                "Public Policy Offices",
                                "Public Relations and Communications Services",
                                "Public Safety",
                                "Racetracks",
                                "Radio and Television Broadcasting",
                                "Rail Transportation",
                                "Railroad Equipment Manufacturing",
                                "Ranching",
                                "Ranching and Fisheries",
                                "Real Estate",
                                "Real Estate Agents and Brokers",
                                "Real Estate and Equipment Rental Services",
                                "Recreational Facilities",
                                "Regenerative Design",
                                "Religious Institutions",
                                "Renewable Energy Equipment Manufacturing",
                                "Renewable Energy Power Generation",
                                "Renewable Energy Semiconductor Manufacturing",
                                "Repair and Maintenance",
                                "Research Services",
                                "Residential Building Construction",
                                "Restaurants",
                                "Retail",
                                "Retail Apparel and Fashion",
                                "Retail Appliances, Electrical, and Electronic Equipment",
                                "Retail Art Dealers",
                                "Retail Art Supplies",
                                "Retail Books and Printed News",
                                "Retail Building Materials and Garden Equipment",
                                "Retail Florists",
                                "Retail Furniture and Home Furnishings",
                                "Retail Gasoline",
                                "Retail Groceries",
                                "Retail Health and Personal Care Products",
                                "Retail Luxury Goods and Jewelry",
                                "Retail Motor Vehicles",
                                "Retail Musical Instruments",
                                "Retail Office Equipment",
                                "Retail Office Supplies and Gifts",
                                "Retail Pharmacies",
                                "Retail Recyclable Materials & Used Merchandise",
                                "Reupholstery and Furniture Repair",
                                "Robot Manufacturing",
                                "Robotics Engineering",
                                "Rubber Products Manufacturing",
                                "Satellite Telecommunications",
                                "Savings Institutions",
                                "School and Employee Bus Services",
                                "Seafood Product Manufacturing",
                                "Secretarial Schools",
                                "Securities and Commodity Exchanges",
                                "Security and Investigations",
                                "Security Guards and Patrol Services",
                                "Security Systems Services",
                                "Semiconductor Manufacturing",
                                "Services for Renewable Energy",
                                "Services for the Elderly and Disabled",
                                "Sheet Music Publishing",
                                "Shipbuilding",
                                "Shuttles and Special Needs Transportation Services",
                                "Sightseeing Transportation",
                                "Skiing Facilities",
                                "Smart Meter Manufacturing",
                                "Soap and Cleaning Product Manufacturing",
                                "Social Networking Platforms",
                                "Software Development",
                                "Solar Electric Power Generation",
                                "Sound Recording",
                                "Space Research and Technology",
                                "Specialty Trade Contractors",
                                "Spectator Sports",
                                "Sporting Goods Manufacturing",
                                "Sports and Recreation Instruction",
                                "Sports Teams and Clubs",
                                "Spring and Wire Product Manufacturing",
                                "Staffing and Recruiting",
                                "Steam and Air-Conditioning Supply",
                                "Strategic Management Services",
                                "Subdivision of Land",
                                "Sugar and Confectionery Product Manufacturing",
                                "Surveying and Mapping Services",
                                "Taxi and Limousine Services",
                                "Technical and Vocational Training",
                                "Technology, Information and Internet",
                                "Technology, Information and Media",
                                "Telecommunications",
                                "Telecommunications Carriers",
                                "Telephone Call Centers",
                                "Temporary Help Services",
                                "Textile Manufacturing",
                                "Theater Companies",
                                "Think Tanks",
                                "Tobacco Manufacturing",
                                "Translation and Localization",
                                "Transportation Equipment Manufacturing",
                                "Transportation, Logistics, Supply Chain and Storage",
                                "Transportation Programs",
                                "Travel Arrangements",
                                "Truck Transportation",
                                "Trusts and Estates",
                                "Turned Products and Fastener Manufacturing",
                                "Urban Transit Services",
                                "Utilities",
                                "Utilities Administration",
                                "Utility System Construction",
                                "Vehicle Repair and Maintenance",
                                "Venture Capital and Private Equity Principals",
                                "Veterinary Services",
                                "Vocational Rehabilitation Services",
                                "Warehousing and Storage",
                                "Waste Collection",
                                "Waste Treatment and Disposal",
                                "Water Supply and Irrigation Systems",
                                "Water, Waste, Steam, and Air Conditioning Services",
                                "Wellness and Fitness Services",
                                "Wholesale",
                                "Wholesale Alcoholic Beverages",
                                "Wholesale Apparel and Sewing Supplies",
                                "Wholesale Appliances, Electrical, and Electronics",
                                "Wholesale Building Materials",
                                "Wholesale Chemical and Allied Products",
                                "Wholesale Computer Equipment",
                                "Wholesale Drugs and Sundries",
                                "Wholesale Food and Beverage",
                                "Wholesale Footwear",
                                "Wholesale Furniture and Home Furnishings",
                                "Wholesale Hardware, Plumbing, Heating Equipment",
                                "Wholesale Import and Export",
                                "Wholesale Luxury Goods and Jewelry",
                                "Wholesale Machinery",
                                "Wholesale Metals and Minerals",
                                "Wholesale Motor Vehicles and Parts",
                                "Wholesale Paper Products",
                                "Wholesale Petroleum and Petroleum Products",
                                "Wholesale Photography Equipment and Supplies",
                                "Wholesale Raw Farm Products",
                                "Wholesale Recyclable Materials",
                                "Wind Electric Power Generation",
                                "Wineries",
                                "Wireless Services",
                                "Women's Handbag Manufacturing",
                                "Wood Product Manufacturing",
                                "Writing and Editing",
                                "Zoos and Botanical Gardens"
                            ],
                            "enumTitles": [
                                "Abrasives and Nonmetallic Minerals Manufacturing",
                                "Accessible Architecture and Design",
                                "Accessible Hardware Manufacturing",
                                "Accommodation Services",
                                "Accounting",
                                "Administration of Justice",
                                "Administrative and Support Services",
                                "Advertising Services",
                                "Agricultural Chemical Manufacturing",
                                "Agriculture, Construction, Mining Machinery Manufacturing",
                                "Air, Water, and Waste Program Management",
                                "Airlines and Aviation",
                                "Alternative Dispute Resolution",
                                "Alternative Fuel Vehicle Manufacturing",
                                "Alternative Medicine",
                                "Ambulance Services",
                                "Amusement Parks and Arcades",
                                "Animal Feed Manufacturing",
                                "Animation and Post-production",
                                "Apparel Manufacturing",
                                "Appliances, Electrical, and Electronics Manufacturing",
                                "Architectural and Structural Metal Manufacturing",
                                "Architecture and Planning",
                                "Armed Forces",
                                "Artificial Rubber and Synthetic Fiber Manufacturing",
                                "Artists and Writers",
                                "Audio and Video Equipment Manufacturing",
                                "Automation Machinery Manufacturing",
                                "Aviation and Aerospace Component Manufacturing",
                                "Baked Goods Manufacturing",
                                "Banking",
                                "Bars, Taverns, and Nightclubs",
                                "Bed-and-Breakfasts, Hostels, Homestays",
                                "Beverage Manufacturing",
                                "Biomass Electric Power Generation",
                                "Biotechnology Research",
                                "Blockchain Services",
                                "Blogs",
                                "Boilers, Tanks, and Shipping Container Manufacturing",
                                "Book and Periodical Publishing",
                                "Book Publishing",
                                "Breweries",
                                "Broadcast Media Production and Distribution",
                                "Building Construction",
                                "Building Equipment Contractors",
                                "Building Finishing Contractors",
                                "Building Structure and Exterior Contractors",
                                "Business Consulting and Services",
                                "Business Content",
                                "Business Intelligence Platforms",
                                "Cable and Satellite Programming",
                                "Capital Markets",
                                "Caterers",
                                "Chemical Manufacturing",
                                "Chemical Raw Materials Manufacturing",
                                "Child Day Care Services",
                                "Chiropractors",
                                "Circuses and Magic Shows",
                                "Civic and Social Organizations",
                                "Civil Engineering",
                                "Claims Adjusting, Actuarial Services",
                                "Clay and Refractory Products Manufacturing",
                                "Climate Data and Analytics",
                                "Climate Technology Product Manufacturing",
                                "Coal Mining",
                                "Collection Agencies",
                                "Commercial and Industrial Equipment Rental",
                                "Commercial and Industrial Machinery Maintenance",
                                "Commercial and Service Industry Machinery Manufacturing",
                                "Communications Equipment Manufacturing",
                                "Community Development and Urban Planning",
                                "Community Services",
                                "Computer and Network Security",
                                "Computer Games",
                                "Computer Hardware Manufacturing",
                                "Computer Networking Products",
                                "Computers and Electronics Manufacturing",
                                "Conservation Programs",
                                "Construction",
                                "Construction Hardware Manufacturing",
                                "Consumer Goods Rental",
                                "Consumer Services",
                                "Correctional Institutions",
                                "Cosmetology and Barber Schools",
                                "Courts of Law",
                                "Credit Intermediation",
                                "Cutlery and Handtool Manufacturing",
                                "Dairy Product Manufacturing",
                                "Dance Companies",
                                "Data Infrastructure and Analytics",
                                "Data Security Software Products",
                                "Defense and Space Manufacturing",
                                "Dentists",
                                "Design Services",
                                "Desktop Computing Software Products",
                                "Digital Accessibility Services",
                                "Distilleries",
                                "E-Learning Providers",
                                "Economic Programs",
                                "Education",
                                "Education Administration Programs",
                                "Electric Lighting Equipment Manufacturing",
                                "Electric Power Generation",
                                "Electric Power Transmission, Control, and Distribution",
                                "Electrical Equipment Manufacturing",
                                "Electronic and Precision Equipment Maintenance",
                                "Embedded Software Products",
                                "Emergency and Relief Services",
                                "Engineering Services",
                                "Engines and Power Transmission Equipment Manufacturing",
                                "Entertainment Providers",
                                "Environmental Quality Programs",
                                "Environmental Services",
                                "Equipment Rental Services",
                                "Events Services",
                                "Executive Offices",
                                "Executive Search Services",
                                "Fabricated Metal Products",
                                "Facilities Services",
                                "Family Planning Centers",
                                "Farming",
                                "Farming, Ranching, Forestry",
                                "Fashion Accessories Manufacturing",
                                "Financial Services",
                                "Fine Arts Schools",
                                "Fire Protection",
                                "Fisheries",
                                "Flight Training",
                                "Food and Beverage Manufacturing",
                                "Food and Beverage Retail",
                                "Food and Beverage Services",
                                "Footwear and Leather Goods Repair",
                                "Footwear Manufacturing",
                                "Forestry and Logging",
                                "Fossil Fuel Electric Power Generation",
                                "Freight and Package Transportation",
                                "Fruit and Vegetable Preserves Manufacturing",
                                "Fuel Cell Manufacturing",
                                "Fundraising",
                                "Funds and Trusts",
                                "Furniture and Home Furnishings Manufacturing",
                                "Gambling Facilities and Casinos",
                                "Geothermal Electric Power Generation",
                                "Glass, Ceramics and Concrete Manufacturing",
                                "Glass Product Manufacturing",
                                "Golf Courses and Country Clubs",
                                "Government Administration",
                                "Government Relations Services",
                                "Graphic Design",
                                "Ground Passenger Transportation",
                                "Health and Human Services",
                                "Higher Education",
                                "Highway, Street, and Bridge Construction",
                                "Historical Sites",
                                "Holding Companies",
                                "Home Health Care Services",
                                "Horticulture",
                                "Hospitality",
                                "Hospitals",
                                "Hospitals and Health Care",
                                "Hotels and Motels",
                                "Household and Institutional Furniture Manufacturing",
                                "Household Appliance Manufacturing",
                                "Household Services",
                                "Housing and Community Development",
                                "Housing Programs",
                                "Human Resources Services",
                                "HVAC and Refrigeration Equipment Manufacturing",
                                "Hydroelectric Power Generation",
                                "Individual and Family Services",
                                "Industrial Machinery Manufacturing",
                                "Industry Associations",
                                "Information Services",
                                "Insurance",
                                "Insurance Agencies and Brokerages",
                                "Insurance and Employee Benefit Funds",
                                "Insurance Carriers",
                                "Interior Design",
                                "International Affairs",
                                "International Trade and Development",
                                "Internet Marketplace Platforms",
                                "Internet News",
                                "Internet Publishing",
                                "Interurban and Rural Bus Services",
                                "Investment Advice",
                                "Investment Banking",
                                "Investment Management",
                                "IT Services and IT Consulting",
                                "IT System Custom Software Development",
                                "IT System Data Services",
                                "IT System Design Services",
                                "IT System Installation and Disposal",
                                "IT System Operations and Maintenance",
                                "IT System Testing and Evaluation",
                                "IT System Training and Support",
                                "Janitorial Services",
                                "Landscaping Services",
                                "Language Schools",
                                "Laundry and Drycleaning Services",
                                "Law Enforcement",
                                "Law Practice",
                                "Leasing Non-residential Real Estate",
                                "Leasing Residential Real Estate",
                                "Leather Product Manufacturing",
                                "Legal Services",
                                "Legislative Offices",
                                "Libraries",
                                "Lime and Gypsum Products Manufacturing",
                                "Loan Brokers",
                                "Machinery Manufacturing",
                                "Magnetic and Optical Media Manufacturing",
                                "Manufacturing",
                                "Maritime Transportation",
                                "Market Research",
                                "Marketing Services",
                                "Mattress and Blinds Manufacturing",
                                "Measuring and Control Instrument Manufacturing",
                                "Meat Products Manufacturing",
                                "Media and Telecommunications",
                                "Media Production",
                                "Medical and Diagnostic Laboratories",
                                "Medical Equipment Manufacturing",
                                "Medical Practices",
                                "Mental Health Care",
                                "Metal Ore Mining",
                                "Metal Treatments",
                                "Metal Valve, Ball, and Roller Manufacturing",
                                "Metalworking Machinery Manufacturing",
                                "Military and International Affairs",
                                "Mining",
                                "Mobile Computing Software Products",
                                "Mobile Food Services",
                                "Mobile Gaming Apps",
                                "Motor Vehicle Manufacturing",
                                "Motor Vehicle Parts Manufacturing",
                                "Movies and Sound Recording",
                                "Movies, Videos and Sound",
                                "Museums",
                                "Museums, Historical Sites, and Zoos",
                                "Musicians",
                                "Nanotechnology Research",
                                "Natural Gas Distribution",
                                "Natural Gas Extraction",
                                "Newspaper Publishing",
                                "Non-profit Organizations",
                                "Nonmetallic Mineral Mining",
                                "Nonresidential Building Construction",
                                "Nuclear Electric Power Generation",
                                "Nursing Homes and Residential Care Facilities",
                                "Office Administration",
                                "Office Furniture and Fixtures Manufacturing",
                                "Oil and Coal Product Manufacturing",
                                "Oil and Gas",
                                "Oil Extraction",
                                "Oil, Gas, and Mining",
                                "Online and Mail Order Retail",
                                "Online Audio and Video Media",
                                "Operations Consulting",
                                "Optometrists",
                                "Outpatient Care Centers",
                                "Outsourcing and Offshoring Consulting",
                                "Packaging and Containers Manufacturing",
                                "Paint, Coating, and Adhesive Manufacturing",
                                "Paper and Forest Product Manufacturing",
                                "Pension Funds",
                                "Performing Arts",
                                "Performing Arts and Spectator Sports",
                                "Periodical Publishing",
                                "Personal and Laundry Services",
                                "Personal Care Product Manufacturing",
                                "Personal Care Services",
                                "Pet Services",
                                "Pharmaceutical Manufacturing",
                                "Philanthropic Fundraising Services",
                                "Photography",
                                "Physical, Occupational and Speech Therapists",
                                "Physicians",
                                "Pipeline Transportation",
                                "Plastics and Rubber Product Manufacturing",
                                "Plastics Manufacturing",
                                "Political Organizations",
                                "Postal Services",
                                "Primary and Secondary Education",
                                "Primary Metal Manufacturing",
                                "Printing Services",
                                "Professional Organizations",
                                "Professional Services",
                                "Professional Training and Coaching",
                                "Public Assistance Programs",
                                "Public Health",
                                "Public Policy Offices",
                                "Public Relations and Communications Services",
                                "Public Safety",
                                "Racetracks",
                                "Radio and Television Broadcasting",
                                "Rail Transportation",
                                "Railroad Equipment Manufacturing",
                                "Ranching",
                                "Ranching and Fisheries",
                                "Real Estate",
                                "Real Estate Agents and Brokers",
                                "Real Estate and Equipment Rental Services",
                                "Recreational Facilities",
                                "Regenerative Design",
                                "Religious Institutions",
                                "Renewable Energy Equipment Manufacturing",
                                "Renewable Energy Power Generation",
                                "Renewable Energy Semiconductor Manufacturing",
                                "Repair and Maintenance",
                                "Research Services",
                                "Residential Building Construction",
                                "Restaurants",
                                "Retail",
                                "Retail Apparel and Fashion",
                                "Retail Appliances, Electrical, and Electronic Equipment",
                                "Retail Art Dealers",
                                "Retail Art Supplies",
                                "Retail Books and Printed News",
                                "Retail Building Materials and Garden Equipment",
                                "Retail Florists",
                                "Retail Furniture and Home Furnishings",
                                "Retail Gasoline",
                                "Retail Groceries",
                                "Retail Health and Personal Care Products",
                                "Retail Luxury Goods and Jewelry",
                                "Retail Motor Vehicles",
                                "Retail Musical Instruments",
                                "Retail Office Equipment",
                                "Retail Office Supplies and Gifts",
                                "Retail Pharmacies",
                                "Retail Recyclable Materials & Used Merchandise",
                                "Reupholstery and Furniture Repair",
                                "Robot Manufacturing",
                                "Robotics Engineering",
                                "Rubber Products Manufacturing",
                                "Satellite Telecommunications",
                                "Savings Institutions",
                                "School and Employee Bus Services",
                                "Seafood Product Manufacturing",
                                "Secretarial Schools",
                                "Securities and Commodity Exchanges",
                                "Security and Investigations",
                                "Security Guards and Patrol Services",
                                "Security Systems Services",
                                "Semiconductor Manufacturing",
                                "Services for Renewable Energy",
                                "Services for the Elderly and Disabled",
                                "Sheet Music Publishing",
                                "Shipbuilding",
                                "Shuttles and Special Needs Transportation Services",
                                "Sightseeing Transportation",
                                "Skiing Facilities",
                                "Smart Meter Manufacturing",
                                "Soap and Cleaning Product Manufacturing",
                                "Social Networking Platforms",
                                "Software Development",
                                "Solar Electric Power Generation",
                                "Sound Recording",
                                "Space Research and Technology",
                                "Specialty Trade Contractors",
                                "Spectator Sports",
                                "Sporting Goods Manufacturing",
                                "Sports and Recreation Instruction",
                                "Sports Teams and Clubs",
                                "Spring and Wire Product Manufacturing",
                                "Staffing and Recruiting",
                                "Steam and Air-Conditioning Supply",
                                "Strategic Management Services",
                                "Subdivision of Land",
                                "Sugar and Confectionery Product Manufacturing",
                                "Surveying and Mapping Services",
                                "Taxi and Limousine Services",
                                "Technical and Vocational Training",
                                "Technology, Information and Internet",
                                "Technology, Information and Media",
                                "Telecommunications",
                                "Telecommunications Carriers",
                                "Telephone Call Centers",
                                "Temporary Help Services",
                                "Textile Manufacturing",
                                "Theater Companies",
                                "Think Tanks",
                                "Tobacco Manufacturing",
                                "Translation and Localization",
                                "Transportation Equipment Manufacturing",
                                "Transportation, Logistics, Supply Chain and Storage",
                                "Transportation Programs",
                                "Travel Arrangements",
                                "Truck Transportation",
                                "Trusts and Estates",
                                "Turned Products and Fastener Manufacturing",
                                "Urban Transit Services",
                                "Utilities",
                                "Utilities Administration",
                                "Utility System Construction",
                                "Vehicle Repair and Maintenance",
                                "Venture Capital and Private Equity Principals",
                                "Veterinary Services",
                                "Vocational Rehabilitation Services",
                                "Warehousing and Storage",
                                "Waste Collection",
                                "Waste Treatment and Disposal",
                                "Water Supply and Irrigation Systems",
                                "Water, Waste, Steam, and Air Conditioning Services",
                                "Wellness and Fitness Services",
                                "Wholesale",
                                "Wholesale Alcoholic Beverages",
                                "Wholesale Apparel and Sewing Supplies",
                                "Wholesale Appliances, Electrical, and Electronics",
                                "Wholesale Building Materials",
                                "Wholesale Chemical and Allied Products",
                                "Wholesale Computer Equipment",
                                "Wholesale Drugs and Sundries",
                                "Wholesale Food and Beverage",
                                "Wholesale Footwear",
                                "Wholesale Furniture and Home Furnishings",
                                "Wholesale Hardware, Plumbing, Heating Equipment",
                                "Wholesale Import and Export",
                                "Wholesale Luxury Goods and Jewelry",
                                "Wholesale Machinery",
                                "Wholesale Metals and Minerals",
                                "Wholesale Motor Vehicles and Parts",
                                "Wholesale Paper Products",
                                "Wholesale Petroleum and Petroleum Products",
                                "Wholesale Photography Equipment and Supplies",
                                "Wholesale Raw Farm Products",
                                "Wholesale Recyclable Materials",
                                "Wind Electric Power Generation",
                                "Wineries",
                                "Wireless Services",
                                "Women's Handbag Manufacturing",
                                "Wood Product Manufacturing",
                                "Writing and Editing",
                                "Zoos and Botanical Gardens"
                            ]
                        },
                        "default": []
                    },
                    "searchCompanyCount": {
                        "title": "Companies to retrieve",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "How many companies to retrieve. Max 100. Default 25.",
                        "default": 25
                    },
                    "maxItemsMode4": {
                        "title": "Max companies to enrich (Mode 4 cost control)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard cost ceiling for Mode 4 — each retrieved company is one paid event. Free plan ceiling: 50 items. 0 = unlimited. Default 0.",
                        "default": 0
                    },
                    "minFollowers": {
                        "title": "Minimum followers",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Skip records with fewer followers than this. 0 = no minimum. Applies to all modes.",
                        "default": 0
                    },
                    "maxFollowers": {
                        "title": "Maximum followers",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Skip records with more followers than this. 0 = no maximum.",
                        "default": 0
                    },
                    "mustHaveEmail": {
                        "title": "Must have email",
                        "type": "boolean",
                        "description": "Drop rows whose email field is missing or 'N/A'. Useful for outbound campaigns.",
                        "default": false
                    },
                    "mustHavePhone": {
                        "title": "Must have phone",
                        "type": "boolean",
                        "description": "Drop rows whose phone field is missing or 'N/A'.",
                        "default": false
                    },
                    "openToWorkOnly": {
                        "title": "Open to work only (Mode 1 / Mode 3)",
                        "type": "boolean",
                        "description": "Keep only profiles flagged as #OpenToWork. Profile-only filter; ignored in company modes.",
                        "default": false
                    },
                    "countryFilter": {
                        "title": "Country filter",
                        "enum": [
                            "",
                            "Afghanistan",
                            "Albania",
                            "Algeria",
                            "Andorra",
                            "Angola",
                            "Antigua and Barbuda",
                            "Argentina",
                            "Armenia",
                            "Australia",
                            "Austria",
                            "Azerbaijan",
                            "Bahamas",
                            "Bahrain",
                            "Bangladesh",
                            "Barbados",
                            "Belarus",
                            "Belgium",
                            "Belize",
                            "Benin",
                            "Bhutan",
                            "Bolivia",
                            "Bosnia and Herzegovina",
                            "Botswana",
                            "Brazil",
                            "Brunei",
                            "Bulgaria",
                            "Burkina Faso",
                            "Burundi",
                            "Cabo Verde",
                            "Cambodia",
                            "Cameroon",
                            "Canada",
                            "Central African Republic",
                            "Chad",
                            "Chile",
                            "China",
                            "Colombia",
                            "Comoros",
                            "Congo",
                            "Costa Rica",
                            "Côte d'Ivoire",
                            "Croatia",
                            "Cuba",
                            "Cyprus",
                            "Czechia",
                            "Democratic Republic of the Congo",
                            "Denmark",
                            "Djibouti",
                            "Dominica",
                            "Dominican Republic",
                            "Ecuador",
                            "Egypt",
                            "El Salvador",
                            "Equatorial Guinea",
                            "Eritrea",
                            "Estonia",
                            "Eswatini",
                            "Ethiopia",
                            "Fiji",
                            "Finland",
                            "France",
                            "Gabon",
                            "Gambia",
                            "Georgia",
                            "Germany",
                            "Ghana",
                            "Greece",
                            "Grenada",
                            "Guatemala",
                            "Guinea",
                            "Guinea-Bissau",
                            "Guyana",
                            "Haiti",
                            "Holy See",
                            "Honduras",
                            "Hong Kong",
                            "Hungary",
                            "Iceland",
                            "India",
                            "Indonesia",
                            "Iran",
                            "Iraq",
                            "Ireland",
                            "Israel",
                            "Italy",
                            "Jamaica",
                            "Japan",
                            "Jordan",
                            "Kazakhstan",
                            "Kenya",
                            "Kiribati",
                            "Kuwait",
                            "Kyrgyzstan",
                            "Laos",
                            "Latvia",
                            "Lebanon",
                            "Lesotho",
                            "Liberia",
                            "Libya",
                            "Liechtenstein",
                            "Lithuania",
                            "Luxembourg",
                            "Macao",
                            "Madagascar",
                            "Malawi",
                            "Malaysia",
                            "Maldives",
                            "Mali",
                            "Malta",
                            "Marshall Islands",
                            "Mauritania",
                            "Mauritius",
                            "Mexico",
                            "Micronesia",
                            "Moldova",
                            "Monaco",
                            "Mongolia",
                            "Montenegro",
                            "Morocco",
                            "Mozambique",
                            "Myanmar",
                            "Namibia",
                            "Nauru",
                            "Nepal",
                            "Netherlands",
                            "New Zealand",
                            "Nicaragua",
                            "Niger",
                            "Nigeria",
                            "North Korea",
                            "North Macedonia",
                            "Norway",
                            "Oman",
                            "Pakistan",
                            "Palau",
                            "Palestine",
                            "Panama",
                            "Papua New Guinea",
                            "Paraguay",
                            "Peru",
                            "Philippines",
                            "Poland",
                            "Portugal",
                            "Qatar",
                            "Romania",
                            "Russia",
                            "Rwanda",
                            "Saint Kitts and Nevis",
                            "Saint Lucia",
                            "Saint Vincent and the Grenadines",
                            "Samoa",
                            "San Marino",
                            "Sao Tome and Principe",
                            "Saudi Arabia",
                            "Senegal",
                            "Serbia",
                            "Seychelles",
                            "Sierra Leone",
                            "Singapore",
                            "Slovakia",
                            "Slovenia",
                            "Solomon Islands",
                            "Somalia",
                            "South Africa",
                            "South Korea",
                            "South Sudan",
                            "Spain",
                            "Sri Lanka",
                            "Sudan",
                            "Suriname",
                            "Sweden",
                            "Switzerland",
                            "Syria",
                            "Taiwan",
                            "Tajikistan",
                            "Tanzania",
                            "Thailand",
                            "Timor-Leste",
                            "Togo",
                            "Tonga",
                            "Trinidad and Tobago",
                            "Tunisia",
                            "Turkey",
                            "Turkmenistan",
                            "Tuvalu",
                            "Uganda",
                            "Ukraine",
                            "United Arab Emirates",
                            "United Kingdom",
                            "United States",
                            "Uruguay",
                            "Uzbekistan",
                            "Vanuatu",
                            "Venezuela",
                            "Vietnam",
                            "Yemen",
                            "Zambia",
                            "Zimbabwe"
                        ],
                        "type": "string",
                        "description": "Keep only rows whose country matches. Leave blank to skip filtering.",
                        "default": ""
                    },
                    "industryFilter": {
                        "title": "Industry filter",
                        "enum": [
                            "",
                            "Abrasives and Nonmetallic Minerals Manufacturing",
                            "Accessible Architecture and Design",
                            "Accessible Hardware Manufacturing",
                            "Accommodation Services",
                            "Accounting",
                            "Administration of Justice",
                            "Administrative and Support Services",
                            "Advertising Services",
                            "Agricultural Chemical Manufacturing",
                            "Agriculture, Construction, Mining Machinery Manufacturing",
                            "Air, Water, and Waste Program Management",
                            "Airlines and Aviation",
                            "Alternative Dispute Resolution",
                            "Alternative Fuel Vehicle Manufacturing",
                            "Alternative Medicine",
                            "Ambulance Services",
                            "Amusement Parks and Arcades",
                            "Animal Feed Manufacturing",
                            "Animation and Post-production",
                            "Apparel Manufacturing",
                            "Appliances, Electrical, and Electronics Manufacturing",
                            "Architectural and Structural Metal Manufacturing",
                            "Architecture and Planning",
                            "Armed Forces",
                            "Artificial Rubber and Synthetic Fiber Manufacturing",
                            "Artists and Writers",
                            "Audio and Video Equipment Manufacturing",
                            "Automation Machinery Manufacturing",
                            "Aviation and Aerospace Component Manufacturing",
                            "Baked Goods Manufacturing",
                            "Banking",
                            "Bars, Taverns, and Nightclubs",
                            "Bed-and-Breakfasts, Hostels, Homestays",
                            "Beverage Manufacturing",
                            "Biomass Electric Power Generation",
                            "Biotechnology Research",
                            "Blockchain Services",
                            "Blogs",
                            "Boilers, Tanks, and Shipping Container Manufacturing",
                            "Book and Periodical Publishing",
                            "Book Publishing",
                            "Breweries",
                            "Broadcast Media Production and Distribution",
                            "Building Construction",
                            "Building Equipment Contractors",
                            "Building Finishing Contractors",
                            "Building Structure and Exterior Contractors",
                            "Business Consulting and Services",
                            "Business Content",
                            "Business Intelligence Platforms",
                            "Cable and Satellite Programming",
                            "Capital Markets",
                            "Caterers",
                            "Chemical Manufacturing",
                            "Chemical Raw Materials Manufacturing",
                            "Child Day Care Services",
                            "Chiropractors",
                            "Circuses and Magic Shows",
                            "Civic and Social Organizations",
                            "Civil Engineering",
                            "Claims Adjusting, Actuarial Services",
                            "Clay and Refractory Products Manufacturing",
                            "Climate Data and Analytics",
                            "Climate Technology Product Manufacturing",
                            "Coal Mining",
                            "Collection Agencies",
                            "Commercial and Industrial Equipment Rental",
                            "Commercial and Industrial Machinery Maintenance",
                            "Commercial and Service Industry Machinery Manufacturing",
                            "Communications Equipment Manufacturing",
                            "Community Development and Urban Planning",
                            "Community Services",
                            "Computer and Network Security",
                            "Computer Games",
                            "Computer Hardware Manufacturing",
                            "Computer Networking Products",
                            "Computers and Electronics Manufacturing",
                            "Conservation Programs",
                            "Construction",
                            "Construction Hardware Manufacturing",
                            "Consumer Goods Rental",
                            "Consumer Services",
                            "Correctional Institutions",
                            "Cosmetology and Barber Schools",
                            "Courts of Law",
                            "Credit Intermediation",
                            "Cutlery and Handtool Manufacturing",
                            "Dairy Product Manufacturing",
                            "Dance Companies",
                            "Data Infrastructure and Analytics",
                            "Data Security Software Products",
                            "Defense and Space Manufacturing",
                            "Dentists",
                            "Design Services",
                            "Desktop Computing Software Products",
                            "Digital Accessibility Services",
                            "Distilleries",
                            "E-Learning Providers",
                            "Economic Programs",
                            "Education",
                            "Education Administration Programs",
                            "Electric Lighting Equipment Manufacturing",
                            "Electric Power Generation",
                            "Electric Power Transmission, Control, and Distribution",
                            "Electrical Equipment Manufacturing",
                            "Electronic and Precision Equipment Maintenance",
                            "Embedded Software Products",
                            "Emergency and Relief Services",
                            "Engineering Services",
                            "Engines and Power Transmission Equipment Manufacturing",
                            "Entertainment Providers",
                            "Environmental Quality Programs",
                            "Environmental Services",
                            "Equipment Rental Services",
                            "Events Services",
                            "Executive Offices",
                            "Executive Search Services",
                            "Fabricated Metal Products",
                            "Facilities Services",
                            "Family Planning Centers",
                            "Farming",
                            "Farming, Ranching, Forestry",
                            "Fashion Accessories Manufacturing",
                            "Financial Services",
                            "Fine Arts Schools",
                            "Fire Protection",
                            "Fisheries",
                            "Flight Training",
                            "Food and Beverage Manufacturing",
                            "Food and Beverage Retail",
                            "Food and Beverage Services",
                            "Footwear and Leather Goods Repair",
                            "Footwear Manufacturing",
                            "Forestry and Logging",
                            "Fossil Fuel Electric Power Generation",
                            "Freight and Package Transportation",
                            "Fruit and Vegetable Preserves Manufacturing",
                            "Fuel Cell Manufacturing",
                            "Fundraising",
                            "Funds and Trusts",
                            "Furniture and Home Furnishings Manufacturing",
                            "Gambling Facilities and Casinos",
                            "Geothermal Electric Power Generation",
                            "Glass, Ceramics and Concrete Manufacturing",
                            "Glass Product Manufacturing",
                            "Golf Courses and Country Clubs",
                            "Government Administration",
                            "Government Relations Services",
                            "Graphic Design",
                            "Ground Passenger Transportation",
                            "Health and Human Services",
                            "Higher Education",
                            "Highway, Street, and Bridge Construction",
                            "Historical Sites",
                            "Holding Companies",
                            "Home Health Care Services",
                            "Horticulture",
                            "Hospitality",
                            "Hospitals",
                            "Hospitals and Health Care",
                            "Hotels and Motels",
                            "Household and Institutional Furniture Manufacturing",
                            "Household Appliance Manufacturing",
                            "Household Services",
                            "Housing and Community Development",
                            "Housing Programs",
                            "Human Resources Services",
                            "HVAC and Refrigeration Equipment Manufacturing",
                            "Hydroelectric Power Generation",
                            "Individual and Family Services",
                            "Industrial Machinery Manufacturing",
                            "Industry Associations",
                            "Information Services",
                            "Insurance",
                            "Insurance Agencies and Brokerages",
                            "Insurance and Employee Benefit Funds",
                            "Insurance Carriers",
                            "Interior Design",
                            "International Affairs",
                            "International Trade and Development",
                            "Internet Marketplace Platforms",
                            "Internet News",
                            "Internet Publishing",
                            "Interurban and Rural Bus Services",
                            "Investment Advice",
                            "Investment Banking",
                            "Investment Management",
                            "IT Services and IT Consulting",
                            "IT System Custom Software Development",
                            "IT System Data Services",
                            "IT System Design Services",
                            "IT System Installation and Disposal",
                            "IT System Operations and Maintenance",
                            "IT System Testing and Evaluation",
                            "IT System Training and Support",
                            "Janitorial Services",
                            "Landscaping Services",
                            "Language Schools",
                            "Laundry and Drycleaning Services",
                            "Law Enforcement",
                            "Law Practice",
                            "Leasing Non-residential Real Estate",
                            "Leasing Residential Real Estate",
                            "Leather Product Manufacturing",
                            "Legal Services",
                            "Legislative Offices",
                            "Libraries",
                            "Lime and Gypsum Products Manufacturing",
                            "Loan Brokers",
                            "Machinery Manufacturing",
                            "Magnetic and Optical Media Manufacturing",
                            "Manufacturing",
                            "Maritime Transportation",
                            "Market Research",
                            "Marketing Services",
                            "Mattress and Blinds Manufacturing",
                            "Measuring and Control Instrument Manufacturing",
                            "Meat Products Manufacturing",
                            "Media and Telecommunications",
                            "Media Production",
                            "Medical and Diagnostic Laboratories",
                            "Medical Equipment Manufacturing",
                            "Medical Practices",
                            "Mental Health Care",
                            "Metal Ore Mining",
                            "Metal Treatments",
                            "Metal Valve, Ball, and Roller Manufacturing",
                            "Metalworking Machinery Manufacturing",
                            "Military and International Affairs",
                            "Mining",
                            "Mobile Computing Software Products",
                            "Mobile Food Services",
                            "Mobile Gaming Apps",
                            "Motor Vehicle Manufacturing",
                            "Motor Vehicle Parts Manufacturing",
                            "Movies and Sound Recording",
                            "Movies, Videos and Sound",
                            "Museums",
                            "Museums, Historical Sites, and Zoos",
                            "Musicians",
                            "Nanotechnology Research",
                            "Natural Gas Distribution",
                            "Natural Gas Extraction",
                            "Newspaper Publishing",
                            "Non-profit Organizations",
                            "Nonmetallic Mineral Mining",
                            "Nonresidential Building Construction",
                            "Nuclear Electric Power Generation",
                            "Nursing Homes and Residential Care Facilities",
                            "Office Administration",
                            "Office Furniture and Fixtures Manufacturing",
                            "Oil and Coal Product Manufacturing",
                            "Oil and Gas",
                            "Oil Extraction",
                            "Oil, Gas, and Mining",
                            "Online and Mail Order Retail",
                            "Online Audio and Video Media",
                            "Operations Consulting",
                            "Optometrists",
                            "Outpatient Care Centers",
                            "Outsourcing and Offshoring Consulting",
                            "Packaging and Containers Manufacturing",
                            "Paint, Coating, and Adhesive Manufacturing",
                            "Paper and Forest Product Manufacturing",
                            "Pension Funds",
                            "Performing Arts",
                            "Performing Arts and Spectator Sports",
                            "Periodical Publishing",
                            "Personal and Laundry Services",
                            "Personal Care Product Manufacturing",
                            "Personal Care Services",
                            "Pet Services",
                            "Pharmaceutical Manufacturing",
                            "Philanthropic Fundraising Services",
                            "Photography",
                            "Physical, Occupational and Speech Therapists",
                            "Physicians",
                            "Pipeline Transportation",
                            "Plastics and Rubber Product Manufacturing",
                            "Plastics Manufacturing",
                            "Political Organizations",
                            "Postal Services",
                            "Primary and Secondary Education",
                            "Primary Metal Manufacturing",
                            "Printing Services",
                            "Professional Organizations",
                            "Professional Services",
                            "Professional Training and Coaching",
                            "Public Assistance Programs",
                            "Public Health",
                            "Public Policy Offices",
                            "Public Relations and Communications Services",
                            "Public Safety",
                            "Racetracks",
                            "Radio and Television Broadcasting",
                            "Rail Transportation",
                            "Railroad Equipment Manufacturing",
                            "Ranching",
                            "Ranching and Fisheries",
                            "Real Estate",
                            "Real Estate Agents and Brokers",
                            "Real Estate and Equipment Rental Services",
                            "Recreational Facilities",
                            "Regenerative Design",
                            "Religious Institutions",
                            "Renewable Energy Equipment Manufacturing",
                            "Renewable Energy Power Generation",
                            "Renewable Energy Semiconductor Manufacturing",
                            "Repair and Maintenance",
                            "Research Services",
                            "Residential Building Construction",
                            "Restaurants",
                            "Retail",
                            "Retail Apparel and Fashion",
                            "Retail Appliances, Electrical, and Electronic Equipment",
                            "Retail Art Dealers",
                            "Retail Art Supplies",
                            "Retail Books and Printed News",
                            "Retail Building Materials and Garden Equipment",
                            "Retail Florists",
                            "Retail Furniture and Home Furnishings",
                            "Retail Gasoline",
                            "Retail Groceries",
                            "Retail Health and Personal Care Products",
                            "Retail Luxury Goods and Jewelry",
                            "Retail Motor Vehicles",
                            "Retail Musical Instruments",
                            "Retail Office Equipment",
                            "Retail Office Supplies and Gifts",
                            "Retail Pharmacies",
                            "Retail Recyclable Materials & Used Merchandise",
                            "Reupholstery and Furniture Repair",
                            "Robot Manufacturing",
                            "Robotics Engineering",
                            "Rubber Products Manufacturing",
                            "Satellite Telecommunications",
                            "Savings Institutions",
                            "School and Employee Bus Services",
                            "Seafood Product Manufacturing",
                            "Secretarial Schools",
                            "Securities and Commodity Exchanges",
                            "Security and Investigations",
                            "Security Guards and Patrol Services",
                            "Security Systems Services",
                            "Semiconductor Manufacturing",
                            "Services for Renewable Energy",
                            "Services for the Elderly and Disabled",
                            "Sheet Music Publishing",
                            "Shipbuilding",
                            "Shuttles and Special Needs Transportation Services",
                            "Sightseeing Transportation",
                            "Skiing Facilities",
                            "Smart Meter Manufacturing",
                            "Soap and Cleaning Product Manufacturing",
                            "Social Networking Platforms",
                            "Software Development",
                            "Solar Electric Power Generation",
                            "Sound Recording",
                            "Space Research and Technology",
                            "Specialty Trade Contractors",
                            "Spectator Sports",
                            "Sporting Goods Manufacturing",
                            "Sports and Recreation Instruction",
                            "Sports Teams and Clubs",
                            "Spring and Wire Product Manufacturing",
                            "Staffing and Recruiting",
                            "Steam and Air-Conditioning Supply",
                            "Strategic Management Services",
                            "Subdivision of Land",
                            "Sugar and Confectionery Product Manufacturing",
                            "Surveying and Mapping Services",
                            "Taxi and Limousine Services",
                            "Technical and Vocational Training",
                            "Technology, Information and Internet",
                            "Technology, Information and Media",
                            "Telecommunications",
                            "Telecommunications Carriers",
                            "Telephone Call Centers",
                            "Temporary Help Services",
                            "Textile Manufacturing",
                            "Theater Companies",
                            "Think Tanks",
                            "Tobacco Manufacturing",
                            "Translation and Localization",
                            "Transportation Equipment Manufacturing",
                            "Transportation, Logistics, Supply Chain and Storage",
                            "Transportation Programs",
                            "Travel Arrangements",
                            "Truck Transportation",
                            "Trusts and Estates",
                            "Turned Products and Fastener Manufacturing",
                            "Urban Transit Services",
                            "Utilities",
                            "Utilities Administration",
                            "Utility System Construction",
                            "Vehicle Repair and Maintenance",
                            "Venture Capital and Private Equity Principals",
                            "Veterinary Services",
                            "Vocational Rehabilitation Services",
                            "Warehousing and Storage",
                            "Waste Collection",
                            "Waste Treatment and Disposal",
                            "Water Supply and Irrigation Systems",
                            "Water, Waste, Steam, and Air Conditioning Services",
                            "Wellness and Fitness Services",
                            "Wholesale",
                            "Wholesale Alcoholic Beverages",
                            "Wholesale Apparel and Sewing Supplies",
                            "Wholesale Appliances, Electrical, and Electronics",
                            "Wholesale Building Materials",
                            "Wholesale Chemical and Allied Products",
                            "Wholesale Computer Equipment",
                            "Wholesale Drugs and Sundries",
                            "Wholesale Food and Beverage",
                            "Wholesale Footwear",
                            "Wholesale Furniture and Home Furnishings",
                            "Wholesale Hardware, Plumbing, Heating Equipment",
                            "Wholesale Import and Export",
                            "Wholesale Luxury Goods and Jewelry",
                            "Wholesale Machinery",
                            "Wholesale Metals and Minerals",
                            "Wholesale Motor Vehicles and Parts",
                            "Wholesale Paper Products",
                            "Wholesale Petroleum and Petroleum Products",
                            "Wholesale Photography Equipment and Supplies",
                            "Wholesale Raw Farm Products",
                            "Wholesale Recyclable Materials",
                            "Wind Electric Power Generation",
                            "Wineries",
                            "Wireless Services",
                            "Women's Handbag Manufacturing",
                            "Wood Product Manufacturing",
                            "Writing and Editing",
                            "Zoos and Botanical Gardens"
                        ],
                        "type": "string",
                        "description": "Keep only rows whose industry matches. Leave blank to skip filtering.",
                        "default": ""
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
