# Scrape Glassdoor Reviews to JSON by Company URL

**Use case:** 

Turn a Glassdoor company URL into clean JSON reviews: overallRating, employmentType, employmentStatus, datePublished, and reviewUrl, one row per review.

## Input

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

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