# Indeed (India) — 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.

> Search for jobs across Indeed India and access detailed information about listings, companies, salaries, and locations to help with your job hunt. Get autocomplete suggestions for job titles and places, plus salary guides and company details to make informed career decisions.

**Category:** Jobs | **Website:** [indeed.co.in/](https://indeed.co.in/) | **Docs:** [parse.bot/marketplace/9ab0f6a0-7281-4db6-969e-115716083396/indeed-co-in-api](https://parse.bot/marketplace/9ab0f6a0-7281-4db6-969e-115716083396/indeed-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-indeed-co-in-api-9ab0f6a0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Get detailed information for a specific company by its slug as it appears in the Indeed URL. Returns company description, CEO info, industry, founding year, headquarters, revenue range, employee count, and related companies.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Company slug/identifier as it appears in the Indeed URL (e.g. 'Google', 'Tcs', 'Infosys') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-indeed-co-in-api-9ab0f6a0/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_job_details

Get full details for a specific job listing by its job key. Returns complete job description (HTML and plain text), salary info, benefits, attributes, hiring insights, and location details. The job_key is obtained from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_key` | string | Yes | Indeed job key identifier (from search_jobs results[*].job_key) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-indeed-co-in-api-9ab0f6a0/get_job_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_key":"<string>"}'
```

### get_job_search_autocomplete

Get autocomplete suggestions for job title or keyword queries. Returns up to 10 suggestions matching the partial input, each with character match positions for highlighting.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Partial search query for autocomplete (e.g. 'soft', 'data an') |

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

### get_location_suggestions

Get location autocomplete suggestions for Indian cities, districts, and states. Returns up to 10 matching locations with character match positions for highlighting.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Partial location query for autocomplete (e.g. 'Mum', 'Bang') |

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

### get_salary_guide

Retrieve salary information for a specific job title or role in India. Returns salary statistics across different pay periods (hourly, daily, weekly, monthly, yearly) including mean, median, min, and max estimates in INR.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Job title slug using hyphens (e.g. 'software-engineer', 'data-analyst', 'python-developer') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-indeed-co-in-api-9ab0f6a0/get_salary_guide \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search_jobs

Search for job listings on Indeed India by keyword and location. Returns a paginated list of jobs with basic details including title, company, location, salary, and snippet. Pagination via start offset (0, 10, 20, ...). Each result includes a job_key usable with get_job_details for full information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `fromage` | integer | No | Filter jobs posted within N days (e.g. 1, 3, 7, 14) |
| `job_type` | string | No | Job type filter |
| `location` | string | No | Location to search in, such as a city or state (e.g. 'Mumbai', 'Bangalore') |
| `query` | string | No | Job search keyword or title (e.g. 'python developer', 'data analyst') |
| `radius` | integer | No | Search radius in km from location |
| `remote` | boolean | No | Filter for remote jobs only |
| `salary_range` | string | No | Salary range filter code |
| `sort` | string | No | Sort order for results |
| `start` | integer | No | Result offset for pagination (0, 10, 20, etc.) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-indeed-co-in-api-9ab0f6a0/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"fromage":"<integer>","job_type":"<string>","location":"<string>","query":"<string>","radius":"<integer>","remote":"<boolean>","salary_range":"<string>","sort":"<string>","start":"<integer>"}'
```
