# Glassdoor.com Job Scraper — Keyword & Search-URL + Salary (`mind_momentum/glassdoor-jobs`) Actor

Extract job listings from glassdoor.com: title, company, location, salary percentiles, posted date, URL. Cursor pagination (30/page), optional city/region via any glassdoor search URL.

- **URL**: https://apify.com/mind\_momentum/glassdoor-jobs.md
- **Developed by:** [Mind Momentum](https://apify.com/mind_momentum) (community)
- **Categories:** Jobs
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## What's an Apify Actor?

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

## How to integrate an Actor?

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

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

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

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

# README

## Glassdoor.com Job Scraper — Keyword & Search-URL + Salary

Scrape job listings from **glassdoor.com** search results — one of the largest job
and company-review platforms in the US. Get clean, structured job postings with
**title, company, location, salary range, posted date, and URL**, plus company
ratings and sponsored-listing flags where available. No login required.

### What you get

One dataset item per job posting:

| Field | Type | Description |
|-------|------|-------------|
| title | string | Job title exactly as posted |
| company | string | Employer name |
| location | string/null | City/region as shown on the listing |
| salary | string/null | Salary range (e.g. "$63,000 - $102,000/yr") from Glassdoor percentiles — employer-provided or Glassdoor estimate (marked `(est.)`) |
| posted | string/null | Posting date (ISO `YYYY-MM-DD`) |
| url | string | Canonical link to the job posting |
| is\_sponsored | boolean (optional) | True for promoted listings that are still real job postings |
| company\_rating | number (optional) | Employer rating (0–5) when shown |

### Input

| Field | Type | Description |
|-------|------|-------------|
| keyword | string (required) | Search keyword, e.g. `marketing` or `software engineer`. Searches the whole United States unless you also provide a Search URL |
| search\_url | string | Optional: any glassdoor.com search URL — run your search on glassdoor.com (specific city, region, or filters), copy the URL, and this actor scrapes exactly that search |
| max\_pages | integer | Result pages to scrape — 30 jobs per page (default 5, max 50) |
| proxyConfiguration | object | Residential proxy (default on the Apify platform) |

**City or region searches:** run the search on glassdoor.com first (e.g. "software
engineer in Austin, TX"), then paste the resulting URL into `search_url`. The actor
keeps your location and filters.

### How much data per run?

A default run (5 pages) yields **~150 unique job postings**; the maximum 50 pages
can return **~1,500** per query. For broader coverage, fan out across keywords and
cities via `search_url` — each run is fast and you pay only per result.

For recruiting pipelines, market mapping, salary benchmarks, and job-board
monitoring, schedule runs daily or weekly — postings churn fast, and the `posted`
date makes delta-tracking trivial.

### Pricing

Pay-per-event: **$1 per 1,000 results** + $0.005 per actor start.
A typical 5-page run (~150 results) costs about $0.155.

### Notes

- Residential proxy is used automatically on the Apify platform. Keep the default
  proxy settings.
- Salary values come from Glassdoor's own data (employer-provided or Glassdoor
  estimate, flagged `(est.)`) — when none is shown, the field is `null` (never
  fabricated).
- Sponsored listings are included and flagged via `is_sponsored` so you can filter
  them in your pipeline.

```json
[
  {
    "title": "Entry Level Marketing Position",
    "company": "Addison Consulting Group",
    "location": "Dallas, TX",
    "salary": null,
    "posted": "2024-11-24",
    "url": "https://www.glassdoor.com/job-listing/entry-level-marketing-position-addison-consulting-group-JV_IC1139977_KO0,30_KE31,55.htm?jl=1008985178550",
    "company_rating": 2.8
  },
  {
    "title": "Head of Brand Marketing",
    "company": "Salted",
    "location": "Remote",
    "salary": "$150,000 - $220,000/yr",
    "posted": "2026-06-11",
    "url": "https://www.glassdoor.com/job-listing/head-of-brand-marketing-salted-JV_KO0,23_KE24,30.htm?jl=1010164939744",
    "company_rating": 3.0
  },
  {
    "title": "Social Marketing & Content Strategy Associate",
    "company": "Ralph Lauren",
    "location": "New York, NY",
    "salary": "$62,000 - $95,935/yr",
    "posted": "2026-08-14",
    "url": "https://www.glassdoor.com/job-listing/social-marketing-content-strategy-associate-ralph-lauren-JV_IC1132348_KO0,43_KE44,56.htm?jl=1010229542261",
    "company_rating": 3.7
  }
]
```

# Actor input Schema

## `keyword` (type: `string`):

Search keyword, e.g. 'marketing' or 'java developer'. Searches the whole United States unless you also set a Search URL.

## `search_url` (type: `string`):

Optional: any glassdoor.com job search URL — run your search on glassdoor.com (city, region, filters) and paste the URL here to scrape exactly that search, e.g. https://www.glassdoor.com/Job/austin-software-engineer-jobs-SRCH\_IL.0,6\_IC1139763\_KO7,24.htm

## `max_pages` (type: `integer`):

Maximum number of result pages to scrape (30 jobs per page).

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

Residential proxy used on the Apify platform to bypass datacenter-IP WAF blocks. Leave default unless you know you need custom proxy settings.

## Actor input object example

```json
{
  "max_pages": 5
}
```

# Actor output Schema

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

No description

# API

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

## JavaScript example

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

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

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("mind_momentum/glassdoor-jobs").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("mind_momentum/glassdoor-jobs").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call mind_momentum/glassdoor-jobs --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,mind_momentum/glassdoor-jobs"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

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