# 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.

> Access data from in.indeed.com.

**Category:** Jobs | **Website:** [in.indeed.com/](https://in.indeed.com/) | **Docs:** [parse.bot/marketplace/f95dc346-bd2d-4a72-952e-2db2b318b0d3/in-indeed-com-api](https://parse.bot/marketplace/f95dc346-bd2d-4a72-952e-2db2b318b0d3/in-indeed-com-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-in-indeed-com-api-f95dc346/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_jobs

Get active job listings and total job count for a specific company on Indeed India. Requires company_url_name from search_companies results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_name` | string | Yes | The company slug/name from search_companies results (company_url_name field, e.g. 'Wipro') |

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

### get_company_profile

Get detailed profile information for a company on Indeed India including CEO, description, headquarters, revenue, and website. Requires company_url_name from search_companies results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_name` | string | Yes | The company slug/name from search_companies results (company_url_name field, e.g. 'Wipro') |

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

### get_job_details

Retrieve full details of a specific job posting including description HTML, location, salary, and posted date. Requires a job_key obtained from search_jobs results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_key` | string | Yes | The unique job key (jk) from search_jobs results (e.g. 'b71232b2c25ed4e2') |

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

### get_salary_info

Get salary data for a specific job title in India, including averages by pay period (HOURLY, DAILY, WEEKLY, MONTHLY, YEARLY) and top-paying cities with their median monthly salaries.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_title` | string | Yes | The job title to look up salary data for (e.g. 'React Developer') |

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

### search_companies

Search for companies on Indeed India by name or keyword. Returns a list of matching company profiles with basic info including company_url_name usable with get_company_profile and get_company_jobs.

**Estimated cost:** Metered

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

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

### search_jobs

Search for job listings on Indeed India by keyword and location. Returns paginated results with 15 jobs per page. Pagination offset increments by 10. Each job includes a job_key usable with get_job_details for full information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location filter (city, state, or country) |
| `query` | string | Yes | Job title, keywords, or company name to search for |
| `start` | integer | No | Pagination offset (increments by 10) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-in-indeed-com-api-f95dc346/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","query":"<string>","start":"<integer>"}'
```
