# Indeed Salary Scraper — Pay by Job Title, Company & City (`blackfalcondata/indeed-salary-scraper`) Actor

Turn Indeed salary pages into clean, structured JSON. Get median, min and max pay for any job title — nationally or by state and city — across five pay periods, plus top-paying companies and cities. Monitor salary movements over time.

- **URL**: https://apify.com/blackfalcondata/indeed-salary-scraper.md
- **Developed by:** [Black Falcon Data](https://apify.com/blackfalcondata) (community)
- **Categories:** Jobs, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.40 / 1,000 results

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

### What does Indeed Salary Scraper do?

Indeed Salary Scraper extracts structured pay data from [indeed.com](https://indeed.com) salary pages — median, minimum and maximum pay for any job title across five pay periods (hourly, daily, weekly, monthly, yearly), plus the top-paying companies and top-paid cities for that role. Look titles up nationally or per state and city, across Indeed country markets in local currency. Recurring runs can emit only the records whose estimates moved, so you can monitor salary trends over time.

### How to use this actor

- 👉 **Register for a free Apify account** — no credit card required.
- 🎉 Just click **[Sign up free on Apify →](https://console.apify.com/sign-up?fpr=1h3gvi&fp_sid=ctarich)** and complete a quick signup.
- 💰 A free Apify account includes $5 in monthly credits — enough to test this actor.
- ⏳ Scrape during the free trial, with no commitment or upfront payment required.

### Key features

<!-- KEY_FEATURES:START -->
- **📤 Export anywhere** — Download the dataset as JSON, CSV, or Excel from the Apify Console, or stream live via the Apify API and integrations (Make, Zapier, Google Sheets, n8n, …).
- **🔗 Paste-mode** — paste any indeed.com URL straight from your browser — single-job pages, search-results URLs, or category SEO URLs. Build the search you want in the UI, copy the URL, paste it here.
- **🔔 Notifications** — Telegram, Slack, Discord, WhatsApp Cloud API, generic webhook — out of the box. Pair with incremental + `notifyOnlyChanges` for daily "new Indeed jobs" pings to your hiring channel.
- **📦 Compact mode** — AI-agent and MCP-friendly compact payloads with core fields only — pipe straight into your ATS, salary-benchmarking tool, or LLM context without parsing extras.
- **🧹 Empty-field stripping** — drop null, empty-string, and empty-array fields from each record before push. Smaller payloads for AI agents and dashboards that already handle missing fields gracefully.
- **♻️ Incremental mode** — recurring runs emit only NEW / UPDATED / REAPPEARED records — UNCHANGED and EXPIRED are opt-in. First run builds the baseline; subsequent runs emit and charge only for the diff. Pair with notifications for daily "new jobs" alerts to your hiring team. Saves 80–95% on daily monitoring.
- **🔌 MCP connectors** — export your results into Notion via Apify's MCP connectors — a clean run-summary page, no glue code. Opt-in via the App connector field; deterministic field-mapping, no AI. Built on Apify's connector framework, so more destinations open up as their catalog grows.
<!-- KEY_FEATURES:END -->

### What data can you extract from indeed.com?

Each result includes Core salary fields (`recordType`, `jobTitle`, `normalizedTitle`, `displayTitle`, `location`, `locationType`, `countryCode`, and `currency`, and more). In standard mode, all fields are always present — unavailable data points are returned as `null`, never omitted. In compact mode, only core fields are returned.

### Input

The main inputs are an optional location filter. Additional filters and options are available in the input schema.

Key parameters:

- **`jobTitles`** — Job titles to get salary data for (e.g. ["software engineer", "registered nurse"]). One aggregate salary record is emitted per title (and per location, when locations are set).
- **`startUrls`** — Alias for Job Titles — paste Indeed career salary URLs (indeed.com/career/.../salaries). A pasted URL contributes its title and location. Merged with the Job Titles list.
- **`locations`** — Optional states or cities (e.g. ["Texas", "San Jose, CA"]). Each job title is looked up in each location. Leave empty for national data.
- **`country`** — Indeed market to query (two-letter code: us, gb, ca, au, de, in, ...). Default us. Salaries are reported in the market's local currency. (default: `"us"`)
- **`includeCompanies`** — Also emit one record per top-paying company for each title×location (company name, mean salary, report count, review count). (default: `true`)
- **`includeCities`** — Also emit one record per top-paid city for each title (city, median/min/max salary). (default: `true`)
- **`maxCompanies`** — Maximum top-paying-company records per title×location. Set 0 for all available (Indeed lists up to ~50). (default: `25`)
- **`compact`** — Output only core fields per record. Ideal for AI agents, MCP workflows, and LLM context windows where token budget matters. (default: `false`)
- **`excludeEmptyFields`** — Drop null, empty-string, and empty-array fields from each record before push. Smaller payloads for AI agents and dashboards. (default: `false`)
- **`incrementalMode`** — Return only salary records that are new or whose estimates changed since the last run for the same query set. Ideal for monitoring salary movements on a schedule. State is keyed automatically; set State Key to isolate universes. (default: `false`)
- **`stateKey`** — Optional stable identifier for the tracked query set. Leave empty to auto-derive from the title/location lists. Use distinct keys for unrelated monitors to keep their state separate.
- **`telegramToken`** — Telegram bot token from @BotFather. Required for Telegram notifications.
- ...and 12 more parameters

### Input examples

**National salary for one job title** — Full picture for a single role: aggregate, companies and cities.

→ One `salary` record with all five pay periods, plus `companySalary` and `citySalary` records for the role.

```json
{
  "jobTitles": [
    "software engineer"
  ],
  "includeCompanies": true,
  "includeCities": true,
  "maxCompanies": 25
}
````

**Compare a role across states** — Each location gets its own salary record with a national benchmark.

→ One `salary` record per title×location with `nationalMedian` for comparison.

```json
{
  "jobTitles": [
    "registered nurse"
  ],
  "locations": [
    "Texas",
    "California",
    "New York State"
  ],
  "includeCompanies": false,
  "includeCities": false
}
```

**Paste an Indeed salary URL** — Start URLs work as-is — the title and location are read from the URL.

→ The same `salary` record as the equivalent title+location input.

```json
{
  "startUrls": [
    "https://www.indeed.com/career/software-engineer/salaries/San-Jose--CA"
  ]
}
```

**Salary change monitor (incremental)** — Schedule this and only pay for records whose estimates actually moved.

→ Only new-or-changed `salary` records on each recurring run.

```json
{
  "jobTitles": [
    "software engineer",
    "data scientist"
  ],
  "includeCompanies": false,
  "includeCities": false,
  "incrementalMode": true
}
```

**Top-paying companies for a role** — Who pays the most for this title, with report and review counts.

→ All available `companySalary` records for the title (maxCompanies 0 = no cap).

```json
{
  "jobTitles": [
    "software engineer"
  ],
  "includeCompanies": true,
  "includeCities": false,
  "maxCompanies": 0
}
```

### Output

Each run produces a dataset of structured salary records. Results can be downloaded as JSON, CSV, or Excel from the Dataset tab in Apify Console.

### Example salary record

```json
{
  "recordType": "salary",
  "jobTitle": "software engineer",
  "normalizedTitle": "software engineer",
  "displayTitle": "Software Engineer",
  "location": "United States",
  "locationType": "COUNTRY",
  "countryCode": "US",
  "currency": "USD",
  "displayPeriod": "YEARLY",
  "salaryMedian": 134578.24,
  "salaryMin": 79943.23,
  "salaryMax": 226552.08,
  "salaryMean": 146163.86,
  "dataPoints": 39664,
  "yearly": {
    "median": 134578.24,
    "min": 79943.23,
    "max": 226552.08,
    "mean": 146163.86,
    "stdDev": 61941.04,
    "dataPoints": 39664,
    "lastUpdated": "2026-07-06T08:15:43.000Z"
  },
  "monthly": {
    "median": 9528.36,
    "min": 5660.11,
    "max": 16040.26,
    "mean": 10348.64,
    "stdDev": 4385.53,
    "dataPoints": 0,
    "lastUpdated": "2026-07-06T08:15:43.000Z"
  },
  "weekly": {
    "median": 2462.33,
    "min": 1462.69,
    "max": 4145.15,
    "mean": 2674.31,
    "stdDev": 1133.31,
    "dataPoints": 0,
    "lastUpdated": "2026-07-06T08:15:43.000Z"
  },
  "daily": {
    "median": 598.09,
    "min": 355.28,
    "max": 1006.84,
    "mean": 649.58,
    "stdDev": 275.28,
    "dataPoints": 0,
    "lastUpdated": "2026-07-06T08:15:43.000Z"
  },
  "hourly": {
    "median": 57.79,
    "min": 34.33,
    "max": 97.28,
    "mean": 62.76,
    "stdDev": 26.6,
    "dataPoints": 0,
    "lastUpdated": "2026-07-06T08:15:43.000Z"
  },
  "averageTenureYears": 2,
  "compensations": [
    {
      "compensationType": "CASH_BONUS",
      "salaryType": "YEARLY",
      "mean": 5000
    }
  ],
  "relatedTitles": [
    {
      "title": "entry level software engineer",
      "displayTitle": "Entry Level Software Engineer",
      "salaryType": "YEARLY",
      "salaryMean": 76448.46
    },
    {
      "title": "junior software engineer",
      "displayTitle": "Junior Software Engineer",
      "salaryType": "YEARLY",
      "salaryMean": 85604.95
    },
    {
      "title": "principal software engineer",
      "displayTitle": "Principal Software Engineer",
      "salaryType": "YEARLY",
      "salaryMean": 176735.57
    },
    {
      "title": "senior software engineer",
      "displayTitle": "Senior Software Engineer",
      "salaryType": "YEARLY",
      "salaryMean": 158182.38
    },
    {
      "title": "software engineer intern",
      "displayTitle": "Software Engineer Intern",
      "salaryType": "HOURLY",
      "salaryMean": 35.05
    },
    "... 1 more items"
  ],
  "lastUpdated": "2026-07-06T08:15:43.000Z",
  "sourceUrl": "https://www.indeed.com/career/software-engineer/salaries",
  "scrapedAt": "2026-07-13T21:10:41.899Z"
}
```

### Incremental mode

Indeed re-estimates its salary aggregates continuously, so incremental mode is change-detection: the first run establishes a baseline and subsequent runs emit — and charge for — only salary records that are new or whose pay numbers actually moved (tiny float jitter in the estimates is ignored). State is keyed automatically from the title/location lists; set `stateKey` to keep unrelated monitors separate. Pair with notifications and `notifyOnlyChanges` to get alerted only when a salary estimate changes.

### How to scrape indeed.com

1. Go to [Indeed Salary Scraper](https://apify.com/blackfalcondata/indeed-salary-scraper?fpr=1h3gvi) in Apify Console.
2. Configure the input and optional location filter.
3. Set `maxResults` to control how many results you need.
4. Click **Start** and wait for the run to finish.
5. Export the dataset as JSON, CSV, or Excel.

### Use cases

- **Compensation benchmarking** — pull median/min/max pay for your roles across states and cities to calibrate salary bands against the market.
- **Offer negotiation research** — check what a title actually pays in a specific metro, including which companies pay the most for it.
- **Recruiting intelligence** — compare pay across markets before opening a role, and see the salary you are competing against by city.
- **Salary trend monitoring** — schedule incremental runs and get notified only when Indeed's estimate for a tracked title moves.
- **Content & research** — feed salary datasets into reports, cost-of-living comparisons, and job-market analyses.

### How much does it cost to scrape indeed.com?

Indeed Salary Scraper uses [pay-per-event](https://docs.apify.com/platform/actors/paid-actors/pay-per-event) pricing. You pay a small fee when the run starts and then for each result that is actually produced.

- **Run start:** $0.01 per run
- **Per result:** $0.0014 per salary record

Example costs:

- 10 results: **$0.024**
- 25 results: **$0.045**
- 100 results: **$0.15**
- 200 results: **$0.29**
- 500 results: **$0.71**

#### Example: recurring monitoring savings

These examples compare full re-scrapes with incremental runs at different churn rates. Churn is the share of records that are new or whose tracked content changed since the previous run. Actual churn depends on your query breadth, source activity, and polling frequency — the scenarios below are examples, not predictions.

Example setup: 250 results per run, daily polling (30 runs/month). Event-pricing examples scale linearly with result count.

| Churn rate | Full re-scrape run cost | Incremental run cost | Savings vs full re-scrape | Monthly cost after baseline |
|---|---:|---:|---:|---:|
| 5% — stable niche query | $0.36 | $0.03 | $0.33 (92%) | $0.82 |
| 15% — moderate broad query | $0.36 | $0.06 | $0.30 (83%) | $1.88 |
| 30% — high-volume aggregator | $0.36 | $0.11 | $0.24 (68%) | $3.45 |

Full re-scrape monthly cost at daily polling: $10.80. First month with incremental costs $1.16 / $2.17 / $3.69 for the 5% / 15% / 30% scenarios because the first run builds baseline state at full cost before incremental savings apply.

Platform usage is included in the per-result fee shown above.

### FAQ

#### How many results can I get from indeed.com?

The number of results depends on the search query and available records on indeed.com. Use the `maxResults` parameter to control how many results are returned per run.

#### Does Indeed Salary Scraper support recurring monitoring?

Yes. Enable incremental mode to only receive new or changed records on subsequent runs. This is ideal for scheduled monitoring where you want to track changes over time without re-processing the full dataset.

#### Can I integrate Indeed Salary Scraper with other apps?

Yes. Indeed Salary Scraper works with Apify's [integrations](https://apify.com/integrations?fpr=1h3gvi) to connect with tools like Zapier, Make, Google Sheets, Slack, and more. You can also use webhooks to trigger actions when a run completes.

#### Can I use Indeed Salary Scraper with the Apify API?

Yes. You can start runs, manage inputs, and retrieve results programmatically through the [Apify API](https://docs.apify.com/api/v2). Client libraries are available for JavaScript, Python, and other languages.

#### Can I use Indeed Salary Scraper through an MCP Server?

Yes. Apify provides an [MCP Server](https://apify.com/apify/actors-mcp-server?fpr=1h3gvi) that lets AI assistants and agents call this actor directly. Use compact mode and `excludeEmptyFields` to keep payloads manageable for LLM context windows.

#### Is it legal to scrape indeed.com?

This actor extracts publicly available data from indeed.com. Web scraping of public information is generally considered legal, but you should always review the target site's terms of service and ensure your use case complies with applicable laws and regulations, including GDPR where relevant.

#### Your feedback

If you have questions, need a feature, or found a bug, please [open an issue](https://apify.com/blackfalcondata/indeed-salary-scraper/issues?fpr=1h3gvi) on the actor's page in Apify Console. Your feedback helps us improve.

### You might also like

- [Actiris Brussels Job Scraper](https://apify.com/blackfalcondata/actiris-scraper?fpr=1h3gvi) — Scrape all active job listings from actiris.brussels — official Brussels public employment service..
- [AMS Austria Job Scraper — Austrian Public Employment Service](https://apify.com/blackfalcondata/ams-austria-job-scraper?fpr=1h3gvi) — Scrape jobs.ams.at — Austria's official AMS public employment portal, branded "alle jobs" ("all.
- [APEC.fr Scraper - French Executive Jobs](https://apify.com/blackfalcondata/apec-scraper?fpr=1h3gvi) — Scrape apec.fr - French executive job listings with salary ranges, company, location, skills,.
- [Arbeitsagentur Jobs Feed — German Federal Employment Agency](https://apify.com/blackfalcondata/arbeitsagentur-jobs-feed?fpr=1h3gvi) — Scrape arbeitsagentur.de — Germany's official public employment portal with over 1 million live job.
- [Arbetsformedlingen Job Scraper](https://apify.com/blackfalcondata/arbetsformedlingen-scraper?fpr=1h3gvi) — Scrape arbetsformedlingen.se (Platsbanken) — Sweden's official employment portal. Returns 84.
- [Bayt.com Scraper — MENA Jobs with Salary & Skills Filter](https://apify.com/blackfalcondata/bayt-scraper?fpr=1h3gvi) — Scrape bayt.com — the leading Middle East job board spanning UAE, Saudi Arabia, Qatar, Egypt.
- [Bumeran Scraper — LATAM Jobs across 7 Countries & 8 Brands](https://apify.com/blackfalcondata/bumeran-scraper?fpr=1h3gvi) — Scrape Bumeran Group's job boards across LATAM — Argentina (bumeran.com.ar + zonajobs), Chile.
- [Cadremploi Scraper — French Executive & Management Jobs](https://apify.com/blackfalcondata/cadremploi-scraper?fpr=1h3gvi) — Scrape cadremploi.fr — France's leading job board for executives and managers (cadres). Salary.
- [Indeed Job Scraper](https://apify.com/blackfalcondata/indeed-scraper?fpr=1h3gvi) — Scrape Indeed **job listings** by keyword and location: title, company, salary, type, apply URL and full descriptions across 62 markets.
- [Indeed Company Scraper](https://apify.com/blackfalcondata/indeed-company-scraper?fpr=1h3gvi) — Scrape Indeed **company** pages: employee reviews, star ratings and firmographics (industry, size, revenue, HQ, founded year, CEO).

### Getting started with Apify

New to Apify? [Create a free account with $5 credit](https://console.apify.com/sign-up?fpr=1h3gvi\&fp_sid=ctarich) — no credit card required.

1. Sign up — $5 platform credit included
2. Open this actor and configure your input
3. Click **Start** — export results as JSON, CSV, or Excel

Need more later? [See Apify pricing](https://apify.com/pricing?fpr=1h3gvi).

# Actor input Schema

## `jobTitles` (type: `array`):

Job titles to get salary data for (e.g. \["software engineer", "registered nurse"]). One aggregate salary record is emitted per title (and per location, when locations are set).

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

Alias for Job Titles — paste Indeed career salary URLs (indeed.com/career/.../salaries). A pasted URL contributes its title and location. Merged with the Job Titles list.

## `locations` (type: `array`):

Optional states or cities (e.g. \["Texas", "San Jose, CA"]). Each job title is looked up in each location. Leave empty for national data.

## `country` (type: `string`):

Indeed market to query (two-letter code: us, gb, ca, au, de, in, ...). Default us. Salaries are reported in the market's local currency.

## `includeCompanies` (type: `boolean`):

Also emit one record per top-paying company for each title×location (company name, mean salary, report count, review count).

## `includeCities` (type: `boolean`):

Also emit one record per top-paid city for each title (city, median/min/max salary).

## `maxCompanies` (type: `integer`):

Maximum top-paying-company records per title×location. Set 0 for all available (Indeed lists up to ~50).

## `compact` (type: `boolean`):

Output only core fields per record. Ideal for AI agents, MCP workflows, and LLM context windows where token budget matters.

## `excludeEmptyFields` (type: `boolean`):

Drop null, empty-string, and empty-array fields from each record before push. Smaller payloads for AI agents and dashboards.

## `incrementalMode` (type: `boolean`):

Return only salary records that are new or whose estimates changed since the last run for the same query set. Ideal for monitoring salary movements on a schedule. State is keyed automatically; set State Key to isolate universes.

## `stateKey` (type: `string`):

Optional stable identifier for the tracked query set. Leave empty to auto-derive from the title/location lists. Use distinct keys for unrelated monitors to keep their state separate.

## `telegramToken` (type: `string`):

Telegram bot token from @BotFather. Required for Telegram notifications.

## `telegramChatId` (type: `string`):

Telegram chat or channel ID where alerts are sent (e.g. "-100123456789" for a private group, or "@yourchannel").

## `discordWebhookUrl` (type: `string`):

Discord incoming webhook URL. Get one from Server Settings → Integrations → Webhooks.

## `slackWebhookUrl` (type: `string`):

Slack incoming webhook URL. Create at api.slack.com/messaging/webhooks.

## `whatsappPhoneNumberId` (type: `string`):

WhatsApp Business phone number ID from Meta Business Manager (the numeric ID, not the phone number). Free service-conversation messages within 24 hours of last user-initiated contact.

## `whatsappAccessToken` (type: `string`):

Meta Cloud API access token with `whatsapp_business_messaging` scope. Get a permanent token from a system user in Meta Business Manager.

## `whatsappTo` (type: `string`):

Recipient phone in E.164 format (e.g. +919876543210). Recipient must have messaged your business number within the last 24 hours.

## `webhookUrl` (type: `string`):

Generic webhook URL that receives a JSON POST with the salary payload + run metadata. Universal escape hatch for n8n / Make / Zapier / your own backend.

## `webhookHeaders` (type: `object`):

Optional headers (e.g. {"Authorization": "Bearer xyz"}) sent with the webhook POST.

## `notificationLimit` (type: `integer`):

Maximum number of salary records included in each notification message (1–20). Excess records are still in the dataset.

## `notifyOnlyChanges` (type: `boolean`):

When Incremental Mode is on, only send notifications for new or changed salary records.

## `appConnector` (type: `string`):

Optional. Pick a connected app under Settings → API & Integrations to receive your results. Best-effort across MCP connectors.

## `mcpIssueTeam` (type: `string`):

Only for issue-tracker connectors: the team (name or ID) the summary issue is created under, if required.

## Actor input object example

```json
{
  "jobTitles": [
    "software engineer"
  ],
  "country": "us",
  "includeCompanies": true,
  "includeCities": true,
  "maxCompanies": 25,
  "compact": false,
  "excludeEmptyFields": false,
  "incrementalMode": false,
  "notificationLimit": 5,
  "notifyOnlyChanges": false
}
```

# Actor output Schema

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

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

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

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "jobTitles": [
        "software engineer"
    ],
    "country": "us",
    "includeCompanies": true,
    "includeCities": true,
    "maxCompanies": 25,
    "excludeEmptyFields": false
};

// Run the Actor and wait for it to finish
const run = await client.actor("blackfalcondata/indeed-salary-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 = {
    "jobTitles": ["software engineer"],
    "country": "us",
    "includeCompanies": True,
    "includeCities": True,
    "maxCompanies": 25,
    "excludeEmptyFields": False,
}

# Run the Actor and wait for it to finish
run = client.actor("blackfalcondata/indeed-salary-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 '{
  "jobTitles": [
    "software engineer"
  ],
  "country": "us",
  "includeCompanies": true,
  "includeCities": true,
  "maxCompanies": 25,
  "excludeEmptyFields": false
}' |
apify call blackfalcondata/indeed-salary-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Indeed Salary Scraper — Pay by Job Title, Company & City",
        "description": "Turn Indeed salary pages into clean, structured JSON. Get median, min and max pay for any job title — nationally or by state and city — across five pay periods, plus top-paying companies and cities. Monitor salary movements over time.",
        "version": "1.0",
        "x-build-id": "TKqmXvpaQo2zDmv1C"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/blackfalcondata~indeed-salary-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-blackfalcondata-indeed-salary-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/blackfalcondata~indeed-salary-scraper/runs": {
            "post": {
                "operationId": "runs-sync-blackfalcondata-indeed-salary-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/blackfalcondata~indeed-salary-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-blackfalcondata-indeed-salary-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "jobTitles": {
                        "title": "💼 Job Titles",
                        "type": "array",
                        "description": "Job titles to get salary data for (e.g. [\"software engineer\", \"registered nurse\"]). One aggregate salary record is emitted per title (and per location, when locations are set).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "startUrls": {
                        "title": "🔗 Start URLs",
                        "type": "array",
                        "description": "Alias for Job Titles — paste Indeed career salary URLs (indeed.com/career/.../salaries). A pasted URL contributes its title and location. Merged with the Job Titles list.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "locations": {
                        "title": "📍 Locations",
                        "type": "array",
                        "description": "Optional states or cities (e.g. [\"Texas\", \"San Jose, CA\"]). Each job title is looked up in each location. Leave empty for national data.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "country": {
                        "title": "🌍 Country",
                        "type": "string",
                        "description": "Indeed market to query (two-letter code: us, gb, ca, au, de, in, ...). Default us. Salaries are reported in the market's local currency.",
                        "default": "us"
                    },
                    "includeCompanies": {
                        "title": "🏢 Include Top-Paying Companies",
                        "type": "boolean",
                        "description": "Also emit one record per top-paying company for each title×location (company name, mean salary, report count, review count).",
                        "default": true
                    },
                    "includeCities": {
                        "title": "🏙️ Include Top-Paid Cities",
                        "type": "boolean",
                        "description": "Also emit one record per top-paid city for each title (city, median/min/max salary).",
                        "default": true
                    },
                    "maxCompanies": {
                        "title": "💯 Max Companies Per Title",
                        "minimum": 0,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum top-paying-company records per title×location. Set 0 for all available (Indeed lists up to ~50).",
                        "default": 25
                    },
                    "compact": {
                        "title": "📦 Compact Output",
                        "type": "boolean",
                        "description": "Output only core fields per record. Ideal for AI agents, MCP workflows, and LLM context windows where token budget matters.",
                        "default": false
                    },
                    "excludeEmptyFields": {
                        "title": "✂️ Exclude Empty Fields",
                        "type": "boolean",
                        "description": "Drop null, empty-string, and empty-array fields from each record before push. Smaller payloads for AI agents and dashboards.",
                        "default": false
                    },
                    "incrementalMode": {
                        "title": "♻️ Incremental Mode",
                        "type": "boolean",
                        "description": "Return only salary records that are new or whose estimates changed since the last run for the same query set. Ideal for monitoring salary movements on a schedule. State is keyed automatically; set State Key to isolate universes.",
                        "default": false
                    },
                    "stateKey": {
                        "title": "🔑 State Key",
                        "type": "string",
                        "description": "Optional stable identifier for the tracked query set. Leave empty to auto-derive from the title/location lists. Use distinct keys for unrelated monitors to keep their state separate."
                    },
                    "telegramToken": {
                        "title": "🤖 Telegram Bot Token",
                        "type": "string",
                        "description": "Telegram bot token from @BotFather. Required for Telegram notifications."
                    },
                    "telegramChatId": {
                        "title": "💬 Telegram Chat ID",
                        "type": "string",
                        "description": "Telegram chat or channel ID where alerts are sent (e.g. \"-100123456789\" for a private group, or \"@yourchannel\")."
                    },
                    "discordWebhookUrl": {
                        "title": "🎮 Discord Webhook URL",
                        "type": "string",
                        "description": "Discord incoming webhook URL. Get one from Server Settings → Integrations → Webhooks."
                    },
                    "slackWebhookUrl": {
                        "title": "💼 Slack Webhook URL",
                        "type": "string",
                        "description": "Slack incoming webhook URL. Create at api.slack.com/messaging/webhooks."
                    },
                    "whatsappPhoneNumberId": {
                        "title": "📱 WhatsApp Phone Number ID",
                        "type": "string",
                        "description": "WhatsApp Business phone number ID from Meta Business Manager (the numeric ID, not the phone number). Free service-conversation messages within 24 hours of last user-initiated contact."
                    },
                    "whatsappAccessToken": {
                        "title": "🔐 WhatsApp Access Token",
                        "type": "string",
                        "description": "Meta Cloud API access token with `whatsapp_business_messaging` scope. Get a permanent token from a system user in Meta Business Manager."
                    },
                    "whatsappTo": {
                        "title": "📨 WhatsApp Recipient",
                        "type": "string",
                        "description": "Recipient phone in E.164 format (e.g. +919876543210). Recipient must have messaged your business number within the last 24 hours."
                    },
                    "webhookUrl": {
                        "title": "🪝 Generic Webhook URL",
                        "type": "string",
                        "description": "Generic webhook URL that receives a JSON POST with the salary payload + run metadata. Universal escape hatch for n8n / Make / Zapier / your own backend."
                    },
                    "webhookHeaders": {
                        "title": "🔑 Webhook Headers",
                        "type": "object",
                        "description": "Optional headers (e.g. {\"Authorization\": \"Bearer xyz\"}) sent with the webhook POST."
                    },
                    "notificationLimit": {
                        "title": "📊 Max Records Per Notification",
                        "minimum": 1,
                        "maximum": 20,
                        "type": "integer",
                        "description": "Maximum number of salary records included in each notification message (1–20). Excess records are still in the dataset.",
                        "default": 5
                    },
                    "notifyOnlyChanges": {
                        "title": "🔄 Notify Only New",
                        "type": "boolean",
                        "description": "When Incremental Mode is on, only send notifications for new or changed salary records.",
                        "default": false
                    },
                    "appConnector": {
                        "title": "Send results to a connected app",
                        "type": "string",
                        "description": "Optional. Pick a connected app under Settings → API & Integrations to receive your results. Best-effort across MCP connectors."
                    },
                    "mcpIssueTeam": {
                        "title": "Issue tracker team",
                        "type": "string",
                        "description": "Only for issue-tracker connectors: the team (name or ID) the summary issue is created under, if required."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
