Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.mindcase.co/llms.txt

Use this file to discover all available pages before exploring further.

$8 / 1k reviews Extract Glassdoor employee reviews via keyword search — pros, cons, ratings, culture / comp / leadership scores

Endpoint

POST /api/v1/agents/glassdoor/reviews/run

Parameters

keyword
string
required
Text · A search keyword (usually a company name like ‘meta’ or ‘stripe’). Glassdoor resolves it to the matching company. One keyword per run.
maxResults
integer
default:100
Number · Reviews to scrape. Use 0 for all.

Response columns

FieldDisplay nameType
employerEmployertext
titleTitletext
prosProstext
consConstext
adviceAdvicetext
overallRatingOverall Ratingrating
careerOpportunitiesCareer Opportunitiesrating
compensationCompensationrating
cultureCulturerating
diversityDiversityrating
leadershipLeadershiprating
workLifeBalanceWork-Life Balancerating
businessOutlookBusiness Outlooktext
recommendToFriendRecommend To Friendtext
ceoApprovalCEO Approvaltext
postedAtPosted Attext
yearsAtCompanyYears At Companynumber
currentEmployeeCurrent Employeeboolean
jobTitleJob Titletext
locationLocationtext
featuredFeaturedboolean
hasEmployerResponseHas Employer Responseboolean
helpfulCountHelpful Countnumber
employerLogoEmployer Logourl

Example

curl -X POST https://api.mindcase.co/api/v1/agents/glassdoor/reviews/run \
  -H "Authorization: Bearer mk_live_abc123def456" \
  -H "Content-Type: application/json" \
  -d '{
  "params": {
    "keyword": "Meta",
    "maxResults": 10
  }
}'

Example response

Response
{
  "job_id": "job_7f3a2b1c",
  "status": "completed",
  "data": [
    {
      "employer": "Meta",
      "title": "Great",
      "pros": "Great comp\nGreat benefits\nSharp people",
      "cons": "Meta lacks ownership\nLeadership can lack",
      "advice": null,
      "overallRating": 5,
      "careerOpportunities": 3,
      "compensation": 5,
      "culture": 3,
      "diversity": 5,
      "leadership": 3,
      "workLifeBalance": 2,
      "businessOutlook": null,
      "recommendToFriend": null,
      "ceoApproval": "APPROVE",
      "postedAt": "2026-04-28T23:01:56.373",
      "yearsAtCompany": 0,
      "currentEmployee": true,
      "jobTitle": "Finance associates",
      "location": "Seattle, WA",
      "featured": false,
      "hasEmployerResponse": false,
      "helpfulCount": 0,
      "employerLogo": "https://media.glassdoor.com/sql/40772/meta-squareLogo-1636117276319.png"
    }
  ]
}