# Indeed.com Scraper - Jobs, Salary & Descriptions (`thirdwatch/indeed-jobs-scraper`) Actor

Scrape Indeed.com job listings: titles, companies, locations, salaries, full descriptions, and posted dates. Supports US, UK, India, and 60+ country domains. Residential proxy for Cloudflare bypass.

- **URL**: https://apify.com/thirdwatch/indeed-jobs-scraper.md
- **Developed by:** [Thirdwatch](https://apify.com/thirdwatch) (community)
- **Categories:** Jobs
- **Stats:** 1 total users, 0 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

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

## Indeed.com Scraper - Jobs, Salary & Descriptions

> Scrape Indeed.com job listings with full descriptions. 22 fields per job across 60+ countries.

### What you get

Indeed is the world's largest job board. This scraper extracts 22 fields per job including titles, companies, locations, structured salaries (min/max/currency), full descriptions, benefits, job type, remote flag, and company ratings. Supports 60+ countries.

No Indeed account needed. No API key required.

Try it free -- click **Start** in the Input tab.

### Output fields

| Field | Description |
|-------|-------------|
| `title` | Job title |
| `company_name` | Hiring company |
| `location` | Job location |
| `description` | Full job description (up to 5,000 chars) |
| `url` | Link to job on Indeed |
| `salary_raw` | Salary as displayed (e.g., "$120,000 - $180,000 a year") |
| `salary_min` | Parsed minimum salary |
| `salary_max` | Parsed maximum salary |
| `salary_currency` | Currency code (USD, GBP, etc.) |
| `salary_period` | Pay period (yearly, monthly, hourly) |
| `posted_date` | Posting date (ISO format) |
| `job_type` | Full-time, Part-time, Contract, etc. |
| `benefits` | Listed benefits (health insurance, 401k, PTO, etc.) |
| `is_remote` | Whether the job is remote |
| `company_rating` | Company rating on Indeed |
| `company_reviews_count` | Number of company reviews |

### Example output

```json
{
    "title": "Senior Data Scientist",
    "company_name": "Google",
    "location": "New York, NY",
    "description": "We are looking for a Senior Data Scientist to join our team...",
    "url": "https://www.indeed.com/viewjob?jk=abc123def456",
    "salary_raw": "$120,000 - $180,000 a year",
    "salary_min": 120000,
    "salary_max": 180000,
    "salary_currency": "USD",
    "salary_period": "yearly",
    "posted_date": "2026-04-06",
    "job_type": "Full-time",
    "benefits": ["Health insurance", "401(k)", "Paid time off"],
    "is_remote": false,
    "company_rating": "4.2",
    "company_reviews_count": "1523"
}
````

### Input parameters

| Parameter | Required | Description |
|-----------|----------|-------------|
| `queries` | Yes | Search queries (e.g., "software engineer", "data scientist") |
| `location` | No | Location filter (e.g., "New York", "remote") |
| `maxResults` | No | Max results per query (default: 50) |
| `country` | No | Indeed country site -- US, UK, India, Canada, and 60+ more |
| `scrapeDetails` | No | Extract full descriptions (default: true) |

### Use cases

- **Job aggregators**: Build comprehensive job boards with Indeed data
- **Salary researchers**: Benchmark compensation with structured salary data
- **HR analytics**: Track hiring trends across companies and locations
- **Recruiters**: Monitor competitor job postings and requirements

### Pricing

Pay-per-result pricing at $0.008 per job listing. Volume discounts available down to $0.002 per result.

| Jobs | Cost |
|------|------|
| 100 | $0.80 |
| 1,000 | $5.00 (Silver) |
| 10,000 | $20.00 (Diamond) |

### Supported countries

United States, United Kingdom, India, Canada, Australia, Germany, France, Singapore, UAE, Japan, Brazil, Mexico, Netherlands, and 50+ more.

### Limitations

- Some jobs may not have salary data (employer choice)
- Full descriptions require detail page visits (slightly slower)
- Very high volumes may encounter rate limiting -- keep queries focused

### Tips

- **Keep queries small** -- 5-50 results per query for best results
- **Use specific locations** -- reduces pagination and improves relevance
- **Filter by date** -- use recent postings for fresher results

### Related Actors

- [LinkedIn Jobs Scraper](https://apify.com/thirdwatch/linkedin-jobs-scraper) -- Global job listings with salary and skills
- [Naukri.com Jobs Scraper](https://apify.com/thirdwatch/naukri-jobs-scraper) -- India jobs with descriptions and salary

### Changelog

- **v2.0** -- Improved data extraction with 22 fields and structured salary parsing
- **v1.0** -- Initial release

# Actor input Schema

## `queries` (type: `array`):

Job search queries (e.g., 'software engineer', 'data scientist'). Each query runs a separate search.

## `location` (type: `string`):

Job location filter (e.g., 'remote', 'New York', 'London'). Leave empty for all locations.

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

Maximum number of jobs to scrape per query. Indeed shows 10 per page.

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

Which Indeed country site to search.

## `scrapeDetails` (type: `boolean`):

Extract full job descriptions. Uses API interception (fast, no extra page loads) when available. Falls back to side-panel click if needed.

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

anti-bot

## Actor input object example

```json
{
  "queries": [
    "software engineer"
  ],
  "location": "remote",
  "maxResults": 50,
  "country": "www",
  "scrapeDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

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

## JavaScript example

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

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

// Prepare Actor input
const input = {
    "queries": [
        "software engineer"
    ],
    "location": "remote",
    "maxResults": 50,
    "country": "www"
};

// Run the Actor and wait for it to finish
const run = await client.actor("thirdwatch/indeed-jobs-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 = {
    "queries": ["software engineer"],
    "location": "remote",
    "maxResults": 50,
    "country": "www",
}

# Run the Actor and wait for it to finish
run = client.actor("thirdwatch/indeed-jobs-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 '{
  "queries": [
    "software engineer"
  ],
  "location": "remote",
  "maxResults": 50,
  "country": "www"
}' |
apify call thirdwatch/indeed-jobs-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Indeed.com Scraper - Jobs, Salary & Descriptions",
        "description": "Scrape Indeed.com job listings: titles, companies, locations, salaries, full descriptions, and posted dates. Supports US, UK, India, and 60+ country domains. Residential proxy for Cloudflare bypass.",
        "version": "2.0",
        "x-build-id": "hlgqyxeX3ZtCQFy9J"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/thirdwatch~indeed-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-thirdwatch-indeed-jobs-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/thirdwatch~indeed-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-thirdwatch-indeed-jobs-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/thirdwatch~indeed-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-thirdwatch-indeed-jobs-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": [
                    "queries"
                ],
                "properties": {
                    "queries": {
                        "title": "Job Search Queries",
                        "type": "array",
                        "description": "Job search queries (e.g., 'software engineer', 'data scientist'). Each query runs a separate search.",
                        "default": [
                            "software engineer"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Job location filter (e.g., 'remote', 'New York', 'London'). Leave empty for all locations.",
                        "default": ""
                    },
                    "maxResults": {
                        "title": "Max Results Per Query",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Maximum number of jobs to scrape per query. Indeed shows 10 per page.",
                        "default": 50
                    },
                    "country": {
                        "title": "Country",
                        "enum": [
                            "www",
                            "uk",
                            "in",
                            "ca",
                            "au",
                            "de",
                            "fr",
                            "sg",
                            "ae",
                            "jp",
                            "br",
                            "mx",
                            "nl",
                            "it",
                            "es",
                            "at",
                            "ch",
                            "be",
                            "ie",
                            "nz",
                            "za",
                            "ph",
                            "hk",
                            "pk",
                            "ng",
                            "ke",
                            "eg",
                            "ar",
                            "co",
                            "cl",
                            "pe",
                            "pl",
                            "cz",
                            "ro",
                            "hu",
                            "se",
                            "no",
                            "dk",
                            "fi",
                            "pt",
                            "gr",
                            "il",
                            "tw",
                            "kr",
                            "th",
                            "my",
                            "id",
                            "vn",
                            "bd"
                        ],
                        "type": "string",
                        "description": "Which Indeed country site to search.",
                        "default": "www"
                    },
                    "scrapeDetails": {
                        "title": "Scrape Full Descriptions",
                        "type": "boolean",
                        "description": "Extract full job descriptions. Uses API interception (fast, no extra page loads) when available. Falls back to side-panel click if needed.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "anti-bot",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
