# Interviews Glassdoor

**Use case:** 

Extract Glassdoor data filtered by Interviews. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.glassdoor.com/Reviews/Google-Reviews-E9079.htm"
    }
  ],
  "maxItems": 10,
  "command": "interviews",
  "sortReviewsBy": "RELEVANCE",
  "includeAllReviews": false,
  "includeAllSalaries": false,
  "includeCompanyReviewStats": false,
  "includeCompanyInterviewStats": false,
  "includeCompanyBenefitsStats": false,
  "includeJobDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "dataType": {
    "label": "Type",
    "format": "text"
  },
  "ratingOverall": {
    "label": "Rating",
    "format": "number"
  },
  "pros": {
    "label": "Pros",
    "format": "text"
  },
  "cons": {
    "label": "Cons",
    "format": "text"
  },
  "advice": {
    "label": "Advice",
    "format": "text"
  },
  "jobTitle": {
    "label": "Job Title",
    "format": "object"
  },
  "location": {
    "label": "Location",
    "format": "object"
  },
  "employmentStatus": {
    "label": "Status",
    "format": "text"
  },
  "reviewDateTime": {
    "label": "Review Date",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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