> ## Documentation Index
> Fetch the complete documentation index at: https://mindcase.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Glassdoor Reviews

> Extract Glassdoor employee reviews via keyword search — pros, cons, ratings, culture / comp / leadership scores

`$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

<ParamField body="keyword" type="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.
</ParamField>

<ParamField body="maxResults" type="integer" default={100}>
  **Number** · Reviews to scrape. Use 0 for all.
</ParamField>

## Response columns

| Field                 | Display name          | Type    |
| --------------------- | --------------------- | ------- |
| `employer`            | Employer              | text    |
| `title`               | Title                 | text    |
| `pros`                | Pros                  | text    |
| `cons`                | Cons                  | text    |
| `advice`              | Advice                | text    |
| `overallRating`       | Overall Rating        | rating  |
| `careerOpportunities` | Career Opportunities  | rating  |
| `compensation`        | Compensation          | rating  |
| `culture`             | Culture               | rating  |
| `diversity`           | Diversity             | rating  |
| `leadership`          | Leadership            | rating  |
| `workLifeBalance`     | Work-Life Balance     | rating  |
| `businessOutlook`     | Business Outlook      | text    |
| `recommendToFriend`   | Recommend To Friend   | text    |
| `ceoApproval`         | CEO Approval          | text    |
| `postedAt`            | Posted At             | text    |
| `yearsAtCompany`      | Years At Company      | number  |
| `currentEmployee`     | Current Employee      | boolean |
| `jobTitle`            | Job Title             | text    |
| `location`            | Location              | text    |
| `featured`            | Featured              | boolean |
| `hasEmployerResponse` | Has Employer Response | boolean |
| `helpfulCount`        | Helpful Count         | number  |
| `employerLogo`        | Employer Logo         | url     |

## Example

<CodeGroup>
  ```bash curl theme={null}
  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
    }
  }'
  ```

  ```python Python theme={null}
  import requests

  resp = requests.post(
      "https://api.mindcase.co/api/v1/agents/glassdoor/reviews/run",
      headers={"Authorization": "Bearer mk_live_abc123def456"},
      json={"params": {
      "keyword": "Meta",
      "maxResults": 10
  }},
  )
  data = resp.json()
  ```
</CodeGroup>

### Example response

```json Response theme={null}
{
  "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"
    }
  ]
}
```
