# Indeed Hiring Signals Scraper (`mighty_monk/indeed-hiring-signals-scraper`) Actor

Scrape public Indeed job search results for hiring signals. Extract job listings and aggregate company-level hiring signals (open roles, titles, locations) for cold email and lead gen triggers.

- **URL**: https://apify.com/mighty\_monk/indeed-hiring-signals-scraper.md
- **Developed by:** [Harsh](https://apify.com/mighty_monk) (community)
- **Categories:** Jobs, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 job or hiring signals

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/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

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

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


# README

### What does Indeed Hiring Signals Scraper do?

**Indeed Hiring Signals Scraper** turns public [Indeed](https://www.indeed.com) job search results into **structured hiring signals** you can use for cold email, outbound, and lead generation. Search for roles like **SDR**, **sales development**, **account executive**, or **growth marketer**, then get clean job rows plus optional **company-level aggregates** (`openRolesCount`, titles, locations, `signal: "hiring"`).

Run it on the **Apify platform** for API access, scheduling, integrations (Make, Zapier, n8n), proxy rotation, and monitoring—no browser farm to maintain.

Ideal trigger for campaigns in the style of Nick Abraham-style autopilot outbound: **companies hiring SDRs often need lead gen help**.

### Why use Indeed Hiring Signals Scraper?

- **Cold email triggers** — Target companies actively hiring SDRs, BDRs, AEs, or growth roles.
- **Agency / freelancing pipeline** — Spot teams scaling sales and pitch outbound, RevOps, or creative services.
- **Market research** — Track which titles and locations are heating up for a niche.
- **Enrichment workflows** — Pipe `company` + `jobUrl` into Clay, Instantly, Smartlead, or your CRM.
- **Fast HTTP scraping** — Cheerio-based (no full browser) with multi-selector fallbacks and graceful block handling.

### How to use Indeed Hiring Signals Scraper

1. Open the Actor on Apify and click **Try for free**.
2. Enter one or more **queries** (e.g. `SDR`, `account executive`).
3. Optionally set **locations** (`United States`, `Remote`, `New York, NY`).
4. Set **maxJobsPerQuery** (per query × location pair).
5. Keep **proxy** enabled for best reliability against Indeed rate limits.
6. Run the Actor and download the dataset as JSON, CSV, Excel, or HTML.

### Input

See the **Input** tab for the full form. Main fields:

| Field | Type | Description |
| --- | --- | --- |
| `queries` | string[] | Job keywords (required). Example: `["SDR", "sales development"]` |
| `locations` | string[] | Locations. Empty string = nationwide. Default: `["United States"]` |
| `maxJobsPerQuery` | integer | Cap per query×location (default `50`) |
| `maxConcurrency` | integer | Concurrent HTTP requests (default `3`) |
| `maxRequestRetries` | integer | Retries per request (default `3`) |
| `requestDelayMs` | integer | Used to derive rate limiting (default `1000`) |
| `proxyConfiguration` | object | Apify Proxy settings |
| `emitCompanySignals` | boolean | Also emit aggregated `company_signal` rows (default `true`) |

Example input:

```json
{
    "queries": ["SDR", "sales development", "account executive", "growth marketer"],
    "locations": ["United States", "Remote"],
    "maxJobsPerQuery": 25,
    "maxConcurrency": 3,
    "requestDelayMs": 1000,
    "proxyConfiguration": { "useApifyProxy": true },
    "emitCompanySignals": true
}
````

### Output

Each dataset item is either a **job** or a **company\_signal**. You can download the dataset in various formats such as JSON, HTML, CSV, or Excel. The run also writes `JOBS.csv` and `SUMMARY.md` to the default key-value store.

#### Job record

```json
{
    "type": "job",
    "title": "Sales Development Representative",
    "company": "Acme SaaS",
    "companyUrl": "https://www.indeed.com/cmp/Acme-SaaS",
    "location": "Austin, TX",
    "salary": "$55,000 - $70,000 a year",
    "jobType": "Full-time",
    "descriptionSnippet": "Outbound SDR role focusing on B2B SaaS lead generation.",
    "jobUrl": "https://www.indeed.com/viewjob?jk=abc123def456",
    "postedAt": "2 days ago",
    "query": "SDR",
    "locationQuery": "United States",
    "scrapedAt": "2026-07-20T12:00:00.000Z",
    "error": null
}
```

#### Company signal record

```json
{
    "type": "company_signal",
    "company": "Acme SaaS",
    "openRolesCount": 2,
    "titles": ["Account Executive", "Sales Development Representative"],
    "locations": ["Austin, TX", "New York, NY"],
    "signal": "hiring",
    "scrapedAt": "2026-07-20T12:00:00.000Z",
    "error": null
}
```

### Data table

| Field | Description |
| --- | --- |
| `type` | `job` or `company_signal` |
| `title` | Job title |
| `company` | Employer name |
| `companyUrl` | Indeed company page when available |
| `location` | Job location text |
| `salary` | Salary snippet from search results |
| `jobType` | Full-time / Part-time / Contract / etc. |
| `descriptionSnippet` | Short snippet from the SERP |
| `jobUrl` | Public Indeed job URL |
| `postedAt` | Relative or absolute posted time |
| `query` | Search query that found the job |
| `locationQuery` | Location used in the search |
| `openRolesCount` | (signal) Distinct open roles for company |
| `titles` | (signal) Distinct titles |
| `locations` | (signal) Distinct locations |
| `signal` | Always `hiring` for aggregates |
| `scrapedAt` | ISO timestamp |
| `error` | Error message when a row partially failed |

### How much does it cost to scrape Indeed hiring signals?

**Pay-per-event (PPE):** **$0.002 per dataset item** (each job or company\_signal row), plus a tiny Actor-start fee.

Examples (compute/proxy extra on platform usage):

| Jobs + signals | Approx. PPE result cost |
| --- | --- |
| 100 rows | ~$0.20 |
| 1,000 rows | ~$2.00 |
| 10,000 rows | ~$20.00 |

Apify Free plan includes monthly free usage; paid plans unlock higher limits and residential proxies for harder targets.

### Tips for better hiring signals

- Use **role-intent queries**: `SDR`, `BDR`, `"sales development"`, `"account executive"`, `"growth marketer"`, `"demand generation"`.
- Pair with **geo** filters your ICP cares about (`Remote`, metro areas, or country).
- Keep **maxConcurrency** low (1–5) and enable **Apify Proxy RESIDENTIAL** — Indeed often blocks datacenter IPs with HTTP 403.
- Prefer **company\_signal** rows for prioritization: sort by `openRolesCount` and outreach the busiest hiring teams first.
- Deduplicate is automatic by Indeed job key (`jk`) across pages and queries.

### FAQ, disclaimers, and support

**Is scraping Indeed legal?**\
You are responsible for complying with Indeed’s Terms of Service, applicable laws, and robots.txt. Use data ethically (e.g. B2B outreach), and do not collect personal data beyond what is publicly listed for legitimate business purposes.

**Why do I get zero results?**\
Indeed frequently returns HTTP 403 or captchas to datacenter IPs. Use Apify Proxy with **RESIDENTIAL** groups (default), lower concurrency, and increase `requestDelayMs`.

**Does this scrape full job descriptions?**\
This Actor focuses on **search-result hiring signals** (title, company, location, salary snippet, snippet text). It does not visit every job detail page, which keeps runs faster and cheaper for outbound triggers.

**Need a custom solution?**\
Open an issue on the Actor’s Issues tab, or contact the developer for custom lead gen / enrichment workflows.

# Actor input Schema

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

Indeed search keywords that signal hiring intent (e.g. SDR, sales development, account executive, growth marketer).

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

Locations to search (e.g. United States, Remote, New York, NY). Empty location searches nationwide on Indeed.

## `maxJobsPerQuery` (type: `integer`):

Maximum number of unique jobs to scrape for each query×location combination.

## `maxConcurrency` (type: `integer`):

Maximum concurrent HTTP requests. Keep low (1–5) to reduce Indeed rate limits and blocks.

## `maxRequestRetries` (type: `integer`):

How many times to retry a failed HTTP request before giving up.

## `requestDelayMs` (type: `integer`):

Approximate delay between requests used to compute rate limiting (max requests per minute).

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

Apify Proxy settings. Indeed frequently blocks datacenter IPs — use RESIDENTIAL for best results.

## `emitCompanySignals` (type: `boolean`):

When true, also push aggregated company\_signal rows (company, openRolesCount, titles, locations, signal: hiring).

## Actor input object example

```json
{
  "queries": [
    "SDR",
    "sales development",
    "account executive",
    "growth marketer"
  ],
  "locations": [
    "United States",
    "Remote"
  ],
  "maxJobsPerQuery": 50,
  "maxConcurrency": 3,
  "maxRequestRetries": 3,
  "requestDelayMs": 1000,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "emitCompanySignals": true
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

## `jobsCsv` (type: `string`):

No description

## `summary` (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 = {
    "queries": [
        "SDR",
        "sales development",
        "account executive",
        "growth marketer"
    ],
    "locations": [
        "United States",
        "Remote"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("mighty_monk/indeed-hiring-signals-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": [
        "SDR",
        "sales development",
        "account executive",
        "growth marketer",
    ],
    "locations": [
        "United States",
        "Remote",
    ],
}

# Run the Actor and wait for it to finish
run = client.actor("mighty_monk/indeed-hiring-signals-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": [
    "SDR",
    "sales development",
    "account executive",
    "growth marketer"
  ],
  "locations": [
    "United States",
    "Remote"
  ]
}' |
apify call mighty_monk/indeed-hiring-signals-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Indeed Hiring Signals Scraper",
        "description": "Scrape public Indeed job search results for hiring signals. Extract job listings and aggregate company-level hiring signals (open roles, titles, locations) for cold email and lead gen triggers.",
        "version": "1.0",
        "x-build-id": "voWZo4jHXBgewdLDv"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/mighty_monk~indeed-hiring-signals-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-mighty_monk-indeed-hiring-signals-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/mighty_monk~indeed-hiring-signals-scraper/runs": {
            "post": {
                "operationId": "runs-sync-mighty_monk-indeed-hiring-signals-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/mighty_monk~indeed-hiring-signals-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-mighty_monk-indeed-hiring-signals-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": "Indeed search keywords that signal hiring intent (e.g. SDR, sales development, account executive, growth marketer).",
                        "default": [
                            "SDR"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "locations": {
                        "title": "Locations",
                        "type": "array",
                        "description": "Locations to search (e.g. United States, Remote, New York, NY). Empty location searches nationwide on Indeed.",
                        "default": [
                            "United States"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxJobsPerQuery": {
                        "title": "Max jobs per query×location",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum number of unique jobs to scrape for each query×location combination.",
                        "default": 50
                    },
                    "maxConcurrency": {
                        "title": "Max concurrency",
                        "minimum": 1,
                        "maximum": 50,
                        "type": "integer",
                        "description": "Maximum concurrent HTTP requests. Keep low (1–5) to reduce Indeed rate limits and blocks.",
                        "default": 3
                    },
                    "maxRequestRetries": {
                        "title": "Max request retries",
                        "minimum": 0,
                        "maximum": 10,
                        "type": "integer",
                        "description": "How many times to retry a failed HTTP request before giving up.",
                        "default": 3
                    },
                    "requestDelayMs": {
                        "title": "Request delay (ms)",
                        "minimum": 0,
                        "maximum": 30000,
                        "type": "integer",
                        "description": "Approximate delay between requests used to compute rate limiting (max requests per minute).",
                        "default": 1000
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify Proxy settings. Indeed frequently blocks datacenter IPs — use RESIDENTIAL for best results.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    },
                    "emitCompanySignals": {
                        "title": "Emit company hiring signals",
                        "type": "boolean",
                        "description": "When true, also push aggregated company_signal rows (company, openRolesCount, titles, locations, signal: hiring).",
                        "default": true
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
