scraper
Back to API docs

Overview

  • Overview

APIs

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

Glassdoor Company

1 credit

Get company profile data from Glassdoor.

POST/api/v1/tools/glassdoor/company

Parameters

employerUrlstring

Glassdoor employer URL. Either employerUrl or employerId is required.

employerIdnumber

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

fieldsstring[]

Fields to include in company. Omit for defaults: name, ratings, counts, headquarters, size, website, ceo, primaryIndustry, allReviewsCount. Use ["*"] for all fields. Available fields: name, ratings, counts, headquarters, size, website, ceo, primaryIndustry, allReviewsCount, employerId, id, shortName, revenue, sizeCategory, type, yearFounded, primaryIndustryId, bestProfile, squareLogoUrl, overview, ratingCountDistribution, filteredReviewsCountByLang, filteredReviewsCount, ratedReviewsCount, demographicRatings, reviewLocations, officeLocations, employerManagedContent, companyUpdates, companyUpdatesTotalCount, photos, links, awards, bestPlacesToWork, coverPhoto, officeAddresses, parent, subsidiaries, siblings, scrapedAt.

Response Schema

dataobject

Glassdoor company result

companyobject

Company profile data. Fields depend on the fields parameter.

metaobject

Request metadata

toolstring

Tool name (glassdoor-company)

creditsUsednumber

Credits consumed (1)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/glassdoor/company \
-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": {
"company": {
"name": "Google",
"ratings": {
"overallRating": 4.4,
"ceoRating": 0.92,
"recommendToFriendRating": 0.88,
"cultureAndValuesRating": 4.3,
"workLifeBalanceRating": 4.2,
"seniorManagementRating": 3.8,
"compensationAndBenefitsRating": 4.5,
"careerOpportunitiesRating": 4.1
},
"headquarters": "Mountain View, CA",
"size": "10000+ Employees",
"website": "https://www.google.com",
"ceo": {
"name": "Sundar Pichai",
"title": "CEO"
},
"primaryIndustry": {
"industryId": 200063,
"industryName": "Internet & Web Services"
}
}
},
"meta": {
"tool": "glassdoor-company",
"creditsUsed": 1,
"requestId": "req_abc123"
}
}