# Track Employer Reputation from Glassdoor Ratings

**Use case:** 

Score employer reputation from Glassdoor: overallRating plus six category ratings for compensation, culture, work-life, leadership, growth, and diversity.

## Input

```json
{
  "companyUrls": [
    "https://www.glassdoor.com/Reviews/Google-Reviews-E9079.htm"
  ],
  "maxReviewsPerCompany": 20,
  "days": 365
}
```

## Output

```json
{
  "companyName": {
    "label": "Company Name",
    "format": "string"
  },
  "overallRating": {
    "label": "Overall Rating",
    "format": "number"
  },
  "ratingCareerOpportunities": {
    "label": "Career Opportunities Rating",
    "format": "number"
  },
  "ratingCompensationBenefits": {
    "label": "Compensation & Benefits Rating",
    "format": "number"
  },
  "ratingCultureValues": {
    "label": "Culture & Values Rating",
    "format": "number"
  },
  "ratingWorkLife": {
    "label": "Work-Life Balance Rating",
    "format": "number"
  },
  "ratingSeniorLeadership": {
    "label": "Senior Leadership Rating",
    "format": "number"
  },
  "ratingDiversityInclusion": {
    "label": "Diversity & Inclusion Rating",
    "format": "number"
  }
}
```

## About this Actor

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