# BizIntel API – Glassdoor Reviews

> BizIntel API – Glassdoor Reviews is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Retrieves aggregated Glassdoor employee review data for a named company, including overall rating and recommend-to-friend percentage.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/talent/glassdoor-reviews
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-glassdoor-reviews-3a251b76
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ei_zjJjx026GU_BRAS1gB

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 bizintel-api-glassdoor-reviews-3a251b76 -d '<json body>'
```

Example prompt: Can you pull the Glassdoor review data for Google — I want to know their overall employee rating and what percentage of staff would recommend it as a place to work?

## When to prefer this

Use this endpoint when you need quick, structured Glassdoor employer review metrics (rating + recommend percentage) for a named company without managing a Glassdoor API key or scraping. Ideal for talent research, employer benchmarking, or due diligence workflows where a pay-per-call model is preferred over subscription APIs.

## Known failure modes

- Company not found or not supported on Glassdoor — 'supported: false' returned
- Insufficient review data for small or obscure companies — low confidence score or empty result
- Ambiguous company name matching multiple entities — may return wrong company
- Stale data if Glassdoor has not been recently indexed — data_as_of field may lag
- Payment failure via x402/USDC — request rejected before processing

## How this service works

Parses corporate work culture score indicators from public listings directories.

## Output

Returns a JSON object with the company name, overall Glassdoor rating (e.g. 4.4 out of 5), the recommend-to-friend percentage, a confidence level, data freshness date, and a disclaimer. Also includes a 'supported' boolean indicating whether the company has sufficient Glassdoor data, and any warnings about data quality.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "company"
     ],
     "properties": {
      "company": {
       "type": "string",
       "description": "Company name"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "company": "Google",
   "overall_rating": 4.4,
   "recommend_to_friend": 88
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-glassdoor-reviews-3a251b76/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
