# Extract Big Tech Glassdoor reviews

**Use case:** 

Extract employee review ratings, pros, cons, roles, locations, and dates from Apple, Microsoft, and Google.

## Input

```json
{
  "reviewUrls": [
    "https://www.glassdoor.com/Reviews/Apple-Reviews-E1138.htm",
    "https://www.glassdoor.com/Reviews/Microsoft-Reviews-E1651.htm",
    "https://www.glassdoor.com/Reviews/Google-Reviews-E9079.htm"
  ],
  "maxReviewsPerCompany": 25,
  "keywords": [
    "AI",
    "machine learning"
  ],
  "jobTitles": [],
  "locations": [],
  "reviewStartDate": null,
  "reviewExtractionStrategy": "BFF_THEN_HTML",
  "extractionMode": "EMBEDDED_ONLY",
  "sourceMode": "LIVE",
  "httpClient": "IMPIT",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "glassdoorEmployerId": {
    "label": "Glassdoor employer ID",
    "format": "string"
  },
  "employerName": {
    "label": "Employer name",
    "format": "string"
  },
  "employerShortName": {
    "label": "Employer short name",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "number"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "employmentStatus": {
    "label": "Employment status",
    "format": "string"
  },
  "isCurrentJob": {
    "label": "Current job",
    "format": "boolean"
  },
  "lengthOfEmployment": {
    "label": "Length of employment",
    "format": "number"
  },
  "jobEndingYear": {
    "label": "Job ending year",
    "format": "number"
  },
  "overallRating": {
    "label": "Overall rating",
    "format": "number"
  },
  "workLifeBalanceRating": {
    "label": "Work-life balance rating",
    "format": "number"
  },
  "cultureAndValuesRating": {
    "label": "Culture and values rating",
    "format": "number"
  },
  "seniorLeadershipRating": {
    "label": "Senior leadership rating",
    "format": "number"
  },
  "compensationAndBenefitsRating": {
    "label": "Compensation and benefits rating",
    "format": "number"
  },
  "careerOpportunitiesRating": {
    "label": "Career opportunities rating",
    "format": "number"
  },
  "diversityAndInclusionRating": {
    "label": "Diversity and inclusion rating",
    "format": "number"
  },
  "ceoRating": {
    "label": "CEO rating",
    "format": "number"
  },
  "outlookRating": {
    "label": "Business outlook rating",
    "format": "number"
  },
  "recommendationRating": {
    "label": "Recommendation rating",
    "format": "number"
  },
  "pros": {
    "label": "Pros",
    "format": "string"
  },
  "cons": {
    "label": "Cons",
    "format": "string"
  },
  "advice": {
    "label": "Advice",
    "format": "string"
  },
  "keywordMatches": {
    "label": "Keyword matches",
    "format": "array"
  },
  "languageId": {
    "label": "Language",
    "format": "string"
  },
  "helpfulCount": {
    "label": "Helpful votes",
    "format": "number"
  },
  "unhelpfulCount": {
    "label": "Unhelpful votes",
    "format": "number"
  },
  "reviewTextCompleteness": {
    "label": "Text completeness",
    "format": "string"
  },
  "employerLogoUrl": {
    "label": "Employer logo URL",
    "format": "string"
  },
  "glassdoorCompanyUrl": {
    "label": "Glassdoor company URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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