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

Scrape indeed.com salary pages into clean structured JSON — median · min & max pay for any job title nationally or by state and city · across five pay periods plus top-paying companies. Incremental mode tracks new and changed records across scheduled runs.

- **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:** 1 total users, 1 monthly users, 92.3% 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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

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

- **📤 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.

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

- [⚡ LinkedIn Job Scraper — Salary, Company & No Cookies](https://apify.com/blackfalcondata/linkedin-job-scraper?fpr=1h3gvi) — 💰 $0.27 per 1,000 jobs ✅ Scrape linkedin.com job postings without login or cookies: salary, skills.
- [Actiris \[Just 💰$1.5\] — Brussels Public Jobs](https://apify.com/blackfalcondata/actiris-scraper?fpr=1h3gvi) — 💰 $1.5 per 1,000 jobs. Scrape actiris.brussels — the official Brussels public employment service.
- [AMS Austria — Public Employment Service Jobs](https://apify.com/blackfalcondata/ams-austria-job-scraper?fpr=1h3gvi) — Scrape jobs.ams.at — Austria's official AMS public employment portal (branded alle jobs) with live.
- [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 \[Just 💰$0.45\] — German Federal Jobs](https://apify.com/blackfalcondata/arbeitsagentur-jobs-feed?fpr=1h3gvi) — 💰 $0.45 per 1,000 jobs. Scrape arbeitsagentur.de — Germany's official public employment portal.
- [Arbetsförmedlingen \[Just 💰$3\] — Sweden Public Jobs](https://apify.com/blackfalcondata/arbetsformedlingen-scraper?fpr=1h3gvi) — 💰 $3 per 1,000 jobs. Scrape arbetsformedlingen.se (Platsbanken) — Sweden's official employment.
- [Bayt — MENA Jobs with Salary & Skills](https://apify.com/blackfalcondata/bayt-scraper?fpr=1h3gvi) — Scrape bayt.com — the leading Middle East job board across UAE · Saudi Arabia · Qatar · Egypt & 9.
- [BestJobs.eu \[Just 💰$1.5\] — Romania Job Board](https://apify.com/blackfalcondata/bestjobs-eu-scraper?fpr=1h3gvi) — 💰 $1.5 per 1,000 jobs. Scrape bestjobs.eu — a leading Romanian job board — export salary ranges ·.
- [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).

### Disclaimer

This actor accesses only publicly available data on indeed.com. You are responsible for how you use the extracted data — in particular any personal information such as names, phone numbers, or email addresses — and for complying with Indeed Salary's terms of use, applicable data-protection law (including the GDPR where it applies), and the anti-spam rules of your jurisdiction.

This actor is not affiliated with, endorsed by, or connected to Indeed Salary.

### Search keywords

indeed scraper, indeed api, apify indeed, indeed data extraction, indeed salary scraper, indeed salary api, apify indeed salary, indeed salary data extraction, indeed.com scraper, indeed.com data, indeed.com api, www.indeed.com scraper, uk.indeed.com scraper, de.indeed.com scraper, ca.indeed.com scraper, au.indeed.com scraper, in.indeed.com scraper, job listings scraper, recruitment data, hiring data, job board scraper, indeed pay data, salary by job title, indeed.com salaries, us salary data, compensation scraper.

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

## `descriptionFormat` (type: `string`):

Choose which representation of the listing description to include. `all` keeps every variant; the others keep only the selected one.

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

Maximum number of listings to return per run. Set to 0 for unlimited.

## `includeDetails` (type: `boolean`):

Fetch the detail page for each listing to retrieve the full description text and contact information. Increases run time and cost. Leave off for a fast, low-cost run.

## 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,
  "descriptionFormat": "all",
  "maxResults": 5,
  "includeDetails": 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,
    "descriptionFormat": "all",
    "maxResults": 5,
    "includeDetails": 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,
    "descriptionFormat": "all",
    "maxResults": 5,
    "includeDetails": 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,
  "descriptionFormat": "all",
  "maxResults": 5,
  "includeDetails": 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

Download the OpenAPI definition: https://api.apify.com/v2/actors/XG6SI80c5E1dqiRJD/builds/nLaWYSdgX9d6JvAiF/openapi.json
