# Scrape Glassdoor interview questions by job

**Use case:** 

Scrape Glassdoor interview questions by job and pull Q&A + difficulty + outcome for client prep. How to pull every interview question for one role?

## Input

```json
{
  "scrapeType": [
    "interviews"
  ],
  "searchQueries": [],
  "employers": [
    "9079"
  ],
  "location": "",
  "countryId": "1",
  "maxPages": 1,
  "jobType": "all",
  "remoteOk": false,
  "easyApplyOnly": false,
  "reviewPages": 2,
  "reviewSort": "DATE",
  "interviewPages": 8,
  "interviewSort": "DATE",
  "jobTitleFilter": "Software Engineer",
  "salaryJobTitles": [],
  "salaryPages": 1,
  "salarySort": "POPULAR",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "requestDelay": 0.5
}
```

## Output

```json
{
  "dataType": {
    "label": "Data Type",
    "format": "string"
  },
  "interviewId": {
    "label": "Interview ID",
    "format": "string"
  },
  "employerId": {
    "label": "Employer ID",
    "format": "string"
  },
  "employerName": {
    "label": "Employer Name",
    "format": "string"
  },
  "jobTitle": {
    "label": "Job Title",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "experience": {
    "label": "Interview Experience",
    "format": "string"
  },
  "difficulty": {
    "label": "Interview Difficulty",
    "format": "string"
  },
  "outcome": {
    "label": "Interview Outcome",
    "format": "string"
  },
  "durationDays": {
    "label": "Process Duration (Days)",
    "format": "integer"
  },
  "processDescription": {
    "label": "Process Description",
    "format": "string"
  },
  "questions": {
    "label": "Interview Questions",
    "format": "array"
  },
  "reviewDate": {
    "label": "Review / Interview Date",
    "format": "string"
  }
}
```

## About this Actor

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