# Scrape Interview Experiences & Questions - Glassdoor

**Use case:** 

Scrape interview experiences and questions from Glassdoor with job title, location, difficulty, outcome, process and date. No login required.

## Input

```json
{
  "companyNames": [
    "Meta"
  ],
  "includeCompanyOverview": true,
  "includeReviews": false,
  "includeInterviews": true,
  "outputEmployerLeads": false,
  "enrichLeadEmails": false,
  "maxReviews": 100,
  "maxInterviews": 50,
  "reviewsPageSize": 20,
  "reviewsSort": "recent",
  "reviewLanguage": "eng",
  "employmentStatus": "all",
  "monitorMode": false,
  "monitorKey": "default",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "text"
  },
  "interviewLocation": {
    "label": "Location",
    "format": "text"
  },
  "difficulty": {
    "label": "Difficulty",
    "format": "text"
  },
  "experience": {
    "label": "Experience",
    "format": "text"
  },
  "outcome": {
    "label": "Outcome",
    "format": "text"
  },
  "processDescription": {
    "label": "Process",
    "format": "text"
  },
  "interviewQuestions": {
    "label": "Questions",
    "format": "array"
  },
  "interviewDateTime": {
    "label": "Date",
    "format": "text"
  }
}
```

## About this Actor

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