# Monitor Glassdoor Reviews on a Schedule

**Use case:** 

Track new Glassdoor reviews for a company with a days window: overallRating, employmentType, datePublished, and reviewUrl on each recurring run.

## Input

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

## Output

```json
{
  "result_type": {
    "label": "Result Type",
    "format": "string"
  },
  "companyName": {
    "label": "Company Name",
    "format": "string"
  },
  "overallRating": {
    "label": "Overall Rating",
    "format": "number"
  },
  "employmentType": {
    "label": "Employment Type",
    "format": "string"
  },
  "employmentStatus": {
    "label": "Employment Status",
    "format": "string"
  },
  "datePublished": {
    "label": "Date Published",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  }
}
```

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