# Glassdoor Employer Review Summary

> Glassdoor Employer Review Summary is a paid API for AI agents from api.strale.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches an employer review summary from Glassdoor, including overall rating, culture/compensation scores, and pros/cons themes for a given company.

## Facts

- Endpoint: POST https://api.strale.io/x402/employer-review-summary
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-1dece0cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g3xgudQLgxI3s2LHXUs0P

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-strale-io-1dece0cc -d '<json body>'
```

Example prompt: Can you pull the Glassdoor review summary for Salesforce — I want the overall rating, culture and compensation scores, and the main pros and cons employees mention?

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of employee sentiment for a specific company, including sub-ratings and thematic pros/cons, without having to scrape or parse Glassdoor directly. Ideal for HR research, due diligence, competitive talent analysis, or populating employer profiles.

## Known failure modes

- Company not found on Glassdoor — returns empty or null result
- Ambiguous company name matching wrong employer — verify with country param
- Glassdoor data unavailable or stale — partial ratings returned
- Missing required 'company' field — 400 validation error
- Rate limiting or payment failure — 402 or 429 error

## How this service works

Get employer review summary from Glassdoor. Returns overall rating, culture/compensation scores, pros/cons themes. SQS: 98/100.

## Output

Returns a structured summary including overall_rating (numeric), ratings_breakdown object with sub-scores like culture and compensation, pros_themes and cons_themes as arrays of thematic strings, and recommend_percent indicating the share of employees who would recommend the company.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "company"
 ],
 "properties": {
  "company": {
   "type": "string"
  },
  "country": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "cons_themes": {
  "type": "array"
 },
 "pros_themes": {
  "type": "array"
 },
 "overall_rating": {
  "type": "number"
 },
 "ratings_breakdown": {
  "type": "object"
 },
 "recommend_percent": {
  "type": "number"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-1dece0cc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
