# Glassdoor Remote Jobs Scraper

**Use case:** 

Filter Glassdoor down to roles that are actually remote. This example returns remote product manager openings across the United States with the employer, its Glassdoor rating, the salary estimate and the link. Remote job boards use it to source listings that come with an employer reputation signal built in.

## Input

```json
{
  "keywords": [
    "Product Manager"
  ],
  "location": "United States",
  "country": "US",
  "maxItems": 50,
  "fromAge": "",
  "jobType": "",
  "seniorityType": "",
  "remoteWorkType": "true",
  "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`).
