scraper
Back to API docs

Overview

  • Overview

APIs

  • POSTReviews
  • POSTCompany
  • POSTSalaries
  • POSTInterviews
  • POSTJobs
  • POSTJob Detail
  • POSTBenefits

Glassdoor Interviews

2 credits

Get interview experiences for an employer from Glassdoor.

POST/api/v1/tools/glassdoor/company-interviews

Parameters

employerUrlstring

Valid Glassdoor employer URL. Either employerUrl or employerId is required. When both are present, they must identify the same employer.

employerIdnumber

Glassdoor employer ID from 1 through 2147483647. Either employerUrl or employerId is required. When both are present, they must identify the same employer.

maxInterviewsnumber

Maximum number of interview entries to return. Must be from 1 through 250 and must not exceed your plan limit. Defaults to 20.

fieldsstring[]

Fields to include per interview. Omit for defaults: jobTitle, reviewDateTime, difficulty, outcome, userQuestions, experience. Use ["*"] for all fields. Available fields: jobTitle, reviewDateTime, difficulty, outcome, userQuestions, experience, id, advice, countHelpful, employer, employerResponses, featured, negotiationDescription, processDescription, source.

Response Schema

dataobject

Glassdoor interviews result

interviewsobject[]

Array of interview experience objects.

interviewStatsobject | null

Aggregate interview statistics for the employer

countnumber

Number of interview entries returned

scrapedAtstring

ISO 8601 timestamp of the scrape

metaobject

Request metadata

toolstring

Tool name (glassdoor-company-interviews)

creditsUsednumber

Credits consumed (2)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/glassdoor/company-interviews \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"employerUrl": "https://www.glassdoor.com/Overview/Working-at-Google-EI_IE9079.htm"
}'

Response Example

{
"data": {
"interviews": [
{
"jobTitle": {
"id": 9002,
"text": "Software Engineer"
},
"reviewDateTime": "2026-03-15T00:00:00.000Z",
"difficulty": "Average",
"outcome": "Accepted Offer",
"userQuestions": [
{
"question": "Design a URL shortening service."
}
],
"experience": "Positive"
}
],
"interviewStats": null,
"count": 1,
"scrapedAt": "2026-04-10T12:00:00.000Z"
},
"meta": {
"tool": "glassdoor-company-interviews",
"creditsUsed": 2,
"requestId": "req_abc123"
}
}