# Glassdoor Top Rated Employer Jobs Scraper

**Use case:** 

Apply a minimum employer rating so the results only contain companies people actually like working for. This example keeps employers rated four stars and above and returns the full job description alongside the salary estimate and apply link. It is the filter candidates wish job boards offered by default.

## Input

```json
{
  "keywords": [
    "Software Engineer"
  ],
  "location": "United States",
  "country": "US",
  "maxItems": 50,
  "fromAge": "",
  "jobType": "",
  "seniorityType": "",
  "remoteWorkType": "",
  "minSalary": 0,
  "maxSalary": 0,
  "includeNoSalaryJob": true,
  "applicationType": "",
  "minRating": 4,
  "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"
  },
  "company_logo": {
    "label": "Logo",
    "format": "image"
  },
  "job_location": {
    "label": "Location",
    "format": "object"
  },
  "job_is_remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "job_url": {
    "label": "Job URL",
    "format": "link"
  },
  "job_apply_url": {
    "label": "Apply URL",
    "format": "link"
  },
  "job_easy_apply": {
    "label": "Easy Apply",
    "format": "boolean"
  },
  "job_posted_via": {
    "label": "Source",
    "format": "text"
  },
  "job_posted_date": {
    "label": "Posted",
    "format": "text"
  },
  "job_job_types": {
    "label": "Type",
    "format": "array"
  },
  "job_levels": {
    "label": "Level",
    "format": "array"
  },
  "job_salary": {
    "label": "Salary",
    "format": "object"
  },
  "job_industry": {
    "label": "Industry",
    "format": "text"
  },
  "job_sponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "company_url": {
    "label": "Company URL",
    "format": "link"
  },
  "company_website": {
    "label": "Website",
    "format": "link"
  },
  "company_sizes_str": {
    "label": "Company Size",
    "format": "text"
  },
  "company_revenue": {
    "label": "Revenue",
    "format": "text"
  }
}
```

## 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`).
