# Multi Job Board Scraper - Indeed, Google Jobs, LinkedIn & More (`groupoject/indeed-jobs-scraper`) Actor

Scrape job listings from Indeed, Google Jobs, ZipRecruiter, LinkedIn and Glassdoor by keyword and location. Export deduplicated jobs with salaries, companies, dates, descriptions and URLs.

- **URL**: https://apify.com/groupoject/indeed-jobs-scraper.md
- **Developed by:** [Group Oject](https://apify.com/groupoject) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 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

## Multi Job Board Scraper - Indeed, Google Jobs, LinkedIn & More

**Scrape job listings from Indeed, Google Jobs, ZipRecruiter, LinkedIn, and Glassdoor by keyword and location. Export clean, deduplicated job data with companies, salaries, posting dates, descriptions, and URLs.**

Search once across multiple job boards and get one structured dataset. Use it to find software engineer jobs, remote data jobs, AI/ML roles, product manager openings, nurse jobs, marketing jobs, and other hiring-market data across major job boards.

---

### What it does

- Searches one or many keywords across your chosen job boards and locations.
- Returns **one clean row per job**: title, company, location, board, job type, remote flag, **normalized salary**, posting date, and URL.
- **Deduplicates across boards** so the same job posted to Indeed *and* LinkedIn appears once.
- Filters by remote, job type, posting recency, and location.

Default boards are **Indeed + Google Jobs**, which are the most reliable for typical runs. The Actor uses Apify Proxy by default when no proxy configuration is provided, because job boards often block plain datacenter traffic. ZipRecruiter, LinkedIn, and Glassdoor are supported but more variable; residential proxy works best for them.

---

### Who it's for

- **Recruiters & sourcers** — pull fresh openings across boards into one sheet.
- **Job seekers & job-board builders** — aggregate listings programmatically.
- **Labor-market researchers** — track roles, salaries, and hiring trends.
- **ATS / HR-tech** — feed live postings into your pipeline.

---

### Popular searches and use cases

Use this Actor for focused job-search and market-research workflows such as:

- **Software engineer jobs in New York** — collect engineering roles from Indeed, Google Jobs, and optional extra boards with salary and company details.
- **Remote data engineer jobs** — find remote data engineering openings across major job boards.
- **Remote AI and machine learning jobs** — search AI engineer, ML engineer, and machine learning engineer roles in one run.
- **Product manager jobs in London** — gather UK product roles with normalized job records.
- **Digital marketing jobs in the USA** — track SEO specialist, content marketing, and digital marketing manager openings.
- **Nurse jobs in California** — collect registered nurse, RN, and nurse practitioner jobs by location.
- **Recruiter sourcing lists** — build structured lead lists of current hiring companies by role, location, and board.

You can save any configuration as an Apify task for repeated runs, scheduled job monitoring, or API integrations.

---

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `searchTerm` | string | — | Job title / keyword (e.g. "software engineer") |
| `searchTerms` | array | — | Run several searches in one go |
| `location` | string | — | City, state, or country (e.g. "New York, NY") |
| `jobBoards` | array | `[indeed, google]` | Boards to scrape |
| `maxResultsPerSite` | integer | `50` | Results per board per term |
| `maxItems` | integer | `0` | Hard cap on total jobs (0 = unlimited) |
| `hoursOld` | integer | — | Only jobs posted within N hours |
| `jobType` | enum | any | full-time / part-time / contract / internship / temporary |
| `remoteOnly` | boolean | `false` | Remote positions only |
| `countryIndeed` | string | `USA` | Country for Indeed / Glassdoor |
| `proxyConfiguration` | object | Apify Proxy | Proxy settings. Leave default for the most reliable runs |

At least one of `searchTerm` / `searchTerms` is required.

#### Example input

```json
{
  "searchTerm": "software engineer",
  "location": "New York, NY",
  "jobBoards": ["indeed", "google"],
  "maxResultsPerSite": 50,
  "remoteOnly": false
}
````

#### Remote AI jobs example

```json
{
  "searchTerms": ["ai engineer", "machine learning engineer", "ml engineer"],
  "location": "Remote",
  "remoteOnly": true,
  "jobBoards": ["indeed", "google"],
  "maxResultsPerSite": 40,
  "maxItems": 300,
  "countryIndeed": "USA"
}
```

#### Recruiter sourcing example

```json
{
  "searchTerms": ["software engineer", "data engineer", "product manager"],
  "location": "United States",
  "jobBoards": ["indeed", "google"],
  "maxResultsPerSite": 50,
  "maxItems": 500,
  "countryIndeed": "USA"
}
```

#### LinkedIn + Indeed sourcing example

```json
{
  "searchTerms": ["sales manager", "account executive", "business development"],
  "location": "United States",
  "jobBoards": ["indeed", "google", "linkedin"],
  "maxResultsPerSite": 30,
  "maxItems": 300,
  "countryIndeed": "USA"
}
```

#### Fresh remote software jobs example

```json
{
  "searchTerms": ["software engineer", "backend engineer", "full stack developer"],
  "location": "Remote",
  "remoteOnly": true,
  "jobBoards": ["indeed", "google"],
  "hoursOld": 168,
  "maxResultsPerSite": 50,
  "maxItems": 300
}
```

#### Healthcare jobs example

```json
{
  "searchTerms": ["registered nurse", "nurse practitioner", "medical assistant"],
  "location": "California",
  "jobBoards": ["indeed", "google"],
  "maxResultsPerSite": 50,
  "maxItems": 500,
  "countryIndeed": "USA"
}
```

More in [`examples/`](examples/).

***

### Output

One dataset row per job:

```json
{
  "title": "Senior Software Engineer",
  "company": "Acme",
  "location": "New York, NY, US",
  "jobBoard": "indeed",
  "jobType": "fulltime",
  "isRemote": false,
  "salary": "$120,000 - $150,000 / year",
  "datePosted": "2026-06-12",
  "jobUrl": "https://www.indeed.com/viewjob?jk=...",
  "companyUrl": null,
  "description": "…",
  "searchTerm": "software engineer"
}
```

A `SUMMARY` key-value record holds totals, boards, and any warnings.

***

### Tips & limitations

- **Indeed / Google Jobs** are the safest default boards. **ZipRecruiter / LinkedIn / Glassdoor** are more aggressively protected — keep **Apify Proxy** enabled and use residential proxy for better coverage.
- For large or scheduled runs, keep Apify Proxy enabled to avoid rate limits.
- Salaries are only as complete as the board provides; many postings omit them.
- Built on the open-source [`python-jobspy`](https://github.com/cullenwatson/JobSpy) library.
- Scrapes publicly listed jobs only. Respect each board's terms of use.

***

### Changelog

See [CHANGELOG.md](CHANGELOG.md).

# Actor input Schema

## `searchTerm` (type: `string`):

Job title or keyword to search for, e.g. "software engineer".

## `searchTerms` (type: `array`):

Run several searches in one go (in addition to or instead of the single term above).

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

City, state, or country, e.g. "New York, NY" or "Remote".

## `jobBoards` (type: `array`):

Which boards to scrape. Indeed and Google Jobs are the safest defaults. ZipRecruiter, LinkedIn, and Glassdoor are supported but more likely to need a proxy.

## `maxResultsPerSite` (type: `integer`):

How many results to request from each board per search term.

## `maxItems` (type: `integer`):

Hard cap on total jobs pushed to the dataset (0 = unlimited).

## `hoursOld` (type: `integer`):

Only jobs posted within this many hours. Leave empty for no limit.

## `jobType` (type: `string`):

Filter by employment type.

## `remoteOnly` (type: `boolean`):

Only return remote positions.

## `countryIndeed` (type: `string`):

Country for Indeed/Glassdoor, e.g. USA, UK, Canada, Germany.

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

Apify Proxy is used by default when no proxy is provided. Residential proxy works best for LinkedIn, Glassdoor, and larger runs.

## `debugMode` (type: `boolean`):

Verbose logging.

## Actor input object example

```json
{
  "searchTerm": "software engineer",
  "location": "New York, NY",
  "jobBoards": [
    "indeed",
    "google"
  ],
  "maxResultsPerSite": 50,
  "maxItems": 0,
  "jobType": "",
  "remoteOnly": false,
  "countryIndeed": "USA",
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "debugMode": false
}
```

# Actor output Schema

## `jobs` (type: `string`):

One row per job: title, company, location, board, salary, link.

## `summary` (type: `string`):

Search terms, boards, total + unique jobs, warnings.

# 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 = {
    "searchTerm": "software engineer",
    "location": "New York, NY",
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("groupoject/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 = {
    "searchTerm": "software engineer",
    "location": "New York, NY",
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("groupoject/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 '{
  "searchTerm": "software engineer",
  "location": "New York, NY",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call groupoject/indeed-jobs-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Multi Job Board Scraper - Indeed, Google Jobs, LinkedIn & More",
        "description": "Scrape job listings from Indeed, Google Jobs, ZipRecruiter, LinkedIn and Glassdoor by keyword and location. Export deduplicated jobs with salaries, companies, dates, descriptions and URLs.",
        "version": "1.0",
        "x-build-id": "KcCEvrgu7A5kE6J3o"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/groupoject~indeed-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-groupoject-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/groupoject~indeed-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-groupoject-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/groupoject~indeed-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-groupoject-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",
                "properties": {
                    "searchTerm": {
                        "title": "Search term",
                        "type": "string",
                        "description": "Job title or keyword to search for, e.g. \"software engineer\"."
                    },
                    "searchTerms": {
                        "title": "Multiple search terms",
                        "type": "array",
                        "description": "Run several searches in one go (in addition to or instead of the single term above).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City, state, or country, e.g. \"New York, NY\" or \"Remote\"."
                    },
                    "jobBoards": {
                        "title": "Job boards",
                        "type": "array",
                        "description": "Which boards to scrape. Indeed and Google Jobs are the safest defaults. ZipRecruiter, LinkedIn, and Glassdoor are supported but more likely to need a proxy.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "indeed",
                                "google",
                                "zip_recruiter",
                                "linkedin",
                                "glassdoor"
                            ],
                            "enumTitles": [
                                "Indeed",
                                "Google Jobs",
                                "ZipRecruiter",
                                "LinkedIn",
                                "Glassdoor"
                            ]
                        },
                        "default": [
                            "indeed",
                            "google"
                        ]
                    },
                    "maxResultsPerSite": {
                        "title": "Max results per board",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "How many results to request from each board per search term.",
                        "default": 50
                    },
                    "maxItems": {
                        "title": "Max total jobs",
                        "minimum": 0,
                        "maximum": 100000,
                        "type": "integer",
                        "description": "Hard cap on total jobs pushed to the dataset (0 = unlimited).",
                        "default": 0
                    },
                    "hoursOld": {
                        "title": "Posted within (hours)",
                        "minimum": 1,
                        "maximum": 8760,
                        "type": "integer",
                        "description": "Only jobs posted within this many hours. Leave empty for no limit."
                    },
                    "jobType": {
                        "title": "Job type",
                        "enum": [
                            "",
                            "fulltime",
                            "parttime",
                            "contract",
                            "internship",
                            "temporary"
                        ],
                        "type": "string",
                        "description": "Filter by employment type.",
                        "default": ""
                    },
                    "remoteOnly": {
                        "title": "Remote jobs only",
                        "type": "boolean",
                        "description": "Only return remote positions.",
                        "default": false
                    },
                    "countryIndeed": {
                        "title": "Country (Indeed & Glassdoor)",
                        "type": "string",
                        "description": "Country for Indeed/Glassdoor, e.g. USA, UK, Canada, Germany.",
                        "default": "USA"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy is used by default when no proxy is provided. Residential proxy works best for LinkedIn, Glassdoor, and larger runs."
                    },
                    "debugMode": {
                        "title": "Debug mode",
                        "type": "boolean",
                        "description": "Verbose logging.",
                        "default": false
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
