scraper
Back to API docs

Overview

  • Overview

APIs

  • POSTReviews
  • POSTCompany
  • POSTSalaries
  • POSTInterviews
  • POSTJobs
  • POSTBenefits

Glassdoor Reviews

1 credit

Get employee reviews for an employer from Glassdoor.

POST/api/v1/tools/glassdoor/reviews

Parameters

employerUrlstring

Glassdoor employer URL. Accepts a full URL like "https://www.glassdoor.com/Overview/Working-at-Google-EI_IE9079.htm". Either employerUrl or employerId is required.

employerIdnumber

Glassdoor employer ID (positive integer). Either employerUrl or employerId is required.

maxReviewsnumber

Maximum number of reviews to return. Must be a positive integer. Defaults to 20.

sortstring

Sort order for reviews. One of "DATE" (newest first) or "RATING". Defaults to "DATE".

includeCompanyDataboolean

Include aggregate company statistics (ratings, review count distribution) in the response. Defaults to false.

fieldsstring[]

Fields to include per review. Omit for defaults: reviewId, url, postedAt, content, ratings, employment. Use ["*"] for all fields. Available fields: reviewId, url, postedAt, content, ratings, employment, engagement, employer, meta.

Response Schema

dataobject

Glassdoor reviews result

reviewsobject[]

Array of review objects. Fields depend on the fields parameter. Default fields: reviewId, url, postedAt, content, ratings, employment.

companyStatsobject | null

Aggregate company ratings and review counts. Only present when includeCompanyData is true.

countnumber

Number of reviews returned

totalReviewsnumber

Total reviews available for this employer

truncatedboolean

True if results were cut short due to a timeout or limit. Only present when truncation occurred.

metaobject

Request metadata

toolstring

Tool name (glassdoor-reviews)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

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

Response Example

{
"data": {
"reviews": [
{
"reviewId": 84291033,
"url": "https://www.glassdoor.com/Reviews/Employee-Review-Google-RVW84291033.htm",
"postedAt": "2026-04-06T00:00:00.000Z",
"content": {
"summary": "Great place to grow",
"pros": "Excellent benefits, smart colleagues, strong engineering culture.",
"cons": "Large organization can feel bureaucratic at times.",
"advice": "Invest in mentorship programs for new hires."
},
"ratings": {
"overall": 4,
"workLifeBalance": 4,
"cultureAndValues": 5,
"seniorLeadership": 3,
"compensationAndBenefits": 5,
"careerOpportunities": 4
},
"employment": {
"isCurrentJob": true,
"status": "REGULAR",
"jobTitle": {
"id": 1234,
"text": "Software Engineer"
},
"location": {
"id": 1150505,
"name": "Mountain View, CA",
"type": "METRO"
}
}
}
],
"companyStats": null,
"count": 1,
"totalReviews": 42315
},
"meta": {
"tool": "glassdoor-reviews",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}