# Scrape Most Recent Employee Reviews - Glassdoor

**Use case:** 

Get the most recent employee reviews on Glassdoor with rating, summary, pros, cons, job title and date. No login required.

## Input

```json
{
  "companyNames": [
    "Amazon"
  ],
  "includeCompanyOverview": true,
  "includeReviews": true,
  "includeInterviews": false,
  "outputEmployerLeads": false,
  "enrichLeadEmails": false,
  "maxReviews": 50,
  "maxInterviews": 0,
  "reviewsPageSize": 20,
  "reviewsSort": "recent",
  "reviewLanguage": "eng",
  "employmentStatus": "all",
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "ratingOverall": {
    "label": "Rating",
    "format": "number"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "pros": {
    "label": "Pros",
    "format": "text"
  },
  "cons": {
    "label": "Cons",
    "format": "text"
  },
  "advice": {
    "label": "Advice",
    "format": "text"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "text"
  },
  "reviewerLocation": {
    "label": "Location",
    "format": "text"
  },
  "employmentStatus": {
    "label": "Status",
    "format": "text"
  },
  "isCurrentEmployee": {
    "label": "Current",
    "format": "boolean"
  },
  "recommendToFriend": {
    "label": "Recommends",
    "format": "text"
  },
  "ceoRating": {
    "label": "CEO",
    "format": "text"
  },
  "reviewDateTime": {
    "label": "Date",
    "format": "text"
  },
  "reviewUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Glassdoor Scraper - Company Reviews, Ratings & Interviews](https://apify.com/scrapesage/glassdoor-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/glassdoor-scraper) to learn more, explore other use cases, and run it yourself.