# Glassdoor New Jobs Scraper

**Use case:** 

Catch Glassdoor listings while they are still fresh. This example keeps only roles posted in the last day and returns the company, its rating, the salary estimate, the location and the link. Run it daily to power a job alert, or to give recruiters a shortlist before the rest of the market has seen it.

## Input

```json
{
  "keywords": [
    "Nurse"
  ],
  "location": "United States",
  "country": "US",
  "maxItems": 50,
  "fromAge": "1",
  "jobType": "",
  "seniorityType": "",
  "remoteWorkType": "",
  "minSalary": 0,
  "maxSalary": 0,
  "includeNoSalaryJob": true,
  "applicationType": "",
  "minRating": 0,
  "radius": 0,
  "industryType": "",
  "employerSizes": "",
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "job_title": {
    "label": "Job Title",
    "format": "text"
  },
  "company_name": {
    "label": "Company",
    "format": "text"
  },
  "company_rating": {
    "label": "Rating",
    "format": "text"
  },
  "job_location": {
    "label": "Location",
    "format": "object"
  },
  "job_is_remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "job_url": {
    "label": "URL",
    "format": "link"
  },
  "job_posted_date": {
    "label": "Posted",
    "format": "text"
  },
  "job_easy_apply": {
    "label": "Easy Apply",
    "format": "boolean"
  },
  "job_posted_via": {
    "label": "Source",
    "format": "text"
  },
  "job_job_types": {
    "label": "Type",
    "format": "array"
  },
  "job_levels": {
    "label": "Level",
    "format": "array"
  },
  "job_salary": {
    "label": "Salary",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Glassdoor Job Listings Scraper](https://apify.com/silentflow/glassdoor-jobs-scraper-ppr.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/silentflow/glassdoor-jobs-scraper-ppr.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/silentflow/glassdoor-jobs-scraper-ppr.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
