# Glassdoor — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Glassdoor provides 4 callable API endpoints through the Parse marketplace.

**Category:** Jobs | **Website:** [glassdoor.co.in/](https://glassdoor.co.in/) | **Docs:** [parse.bot/marketplace/a72d5e0c-1c1b-4ff7-8038-8072d605a8bb/glassdoor-co-in-api](https://parse.bot/marketplace/a72d5e0c-1c1b-4ff7-8038-8072d605a8bb/glassdoor-co-in-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-glassdoor-co-in-api-a72d5e0c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_interview_questions

Get interview-related FAQ data and interview questions shared by candidates for a specific company. Returns FAQ answers about hiring difficulty, process duration, and common interview experiences, plus actual interview questions when available. Requires employer_id and company_slug from search_companies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug from search_companies results[*].slug. |
| `employer_id` | string | Yes | Employer ID from search_companies results[*].employerId. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-glassdoor-co-in-api-a72d5e0c/get_company_interview_questions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","employer_id":"<string>"}'
```

### get_company_overview

Get company overview including aggregate rating, review count, CEO approval percentage, and employee recommendation percentage. Requires employer_id and company_slug obtained from search_companies. Not all fields are guaranteed present — CEO approval and recommendation may be absent for smaller companies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug from search_companies results[*].slug. |
| `employer_id` | string | Yes | Employer ID from search_companies results[*].employerId. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-glassdoor-co-in-api-a72d5e0c/get_company_overview \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","employer_id":"<string>"}'
```

### get_company_salaries

Get salary information for various job titles at a specific company. Returns a list of job titles with submission counts and optional salary ranges, plus FAQ answers about compensation. Results are from the first page of salary data. Requires employer_id and company_slug from search_companies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | Yes | Company slug from search_companies results[*].slug. |
| `employer_id` | string | Yes | Employer ID from search_companies results[*].employerId. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-glassdoor-co-in-api-a72d5e0c/get_company_salaries \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","employer_id":"<string>"}'
```

### search_companies

Full-text search for companies by name on Glassdoor India. Returns company name, employer ID, and slug for each match. Results are extracted from the search results page; the number of results varies by query specificity. Each result provides the identifiers needed to call other endpoints (employer_id, company_slug).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Company name to search for. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-glassdoor-co-in-api-a72d5e0c/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
