# Naukri — 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 naukri.com.

**Category:** Jobs | **Website:** [naukri.com/](https://naukri.com/) | **Docs:** [parse.bot/marketplace/5f5984ac-34ec-4e49-a9e6-5a56e0039c4b/naukri-com-api](https://parse.bot/marketplace/5f5984ac-34ec-4e49-a9e6-5a56e0039c4b/naukri-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-naukri-com-api-5f5984ac/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_company_details

Fetch comprehensive profile details for a company group by its ID. Returns ratings, office locations, salary data, benefits, team leaders, interview questions, and other sections that vary by company.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `group_id` | string | Yes | The company group ID (e.g., '10476' for Accenture). Obtainable from search_companies results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-naukri-com-api-5f5984ac/get_company_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"group_id":"<string>"}'
```

### get_job_details

Fetch full details of a specific job listing by its numeric ID. Returns comprehensive job information including description, requirements, salary, company info, and application details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | The numeric job ID (e.g., '150526031159'). Obtainable from search_jobs or get_similar_jobs results. |

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

### get_similar_jobs

Get a list of jobs similar to a given job listing. Returns collaborative and content-based recommendations combined into a flat list.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `job_id` | string | Yes | The numeric job ID to find similar jobs for (e.g., '150526031159'). Obtainable from search_jobs results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-naukri-com-api-5f5984ac/get_similar_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"job_id":"<string>"}'
```

### search_companies

Search for companies hiring on Naukri.com. Returns paginated company group listings with ratings, tags, and cluster filters for experience, location, sector, and industry.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page_no` | integer | No | Page number for pagination, starting at 1. |
| `query` | string | No | Company search query (e.g., 'tcs', 'infosys'). Omitting returns all companies. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-naukri-com-api-5f5984ac/search_companies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page_no":"<integer>","query":"<string>"}'
```

### search_jobs

Search for job listings on Naukri.com by keyword, location, experience, and salary. Returns paginated results with up to 20 jobs per page. Pagination is page-number based starting at 1.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date_posted` | string | No | Filter by how recently jobs were posted. Maps to Naukri's native job age filter. |
| `experience` | string | No | Minimum experience in years (e.g., '5'). |
| `keyword` | string | No | Search keyword such as job title, skill, or company name (e.g., 'python developer', 'data analyst'). |
| `location` | string | No | Job location city or region (e.g., 'bangalore', 'delhi', 'mumbai'). |
| `page_no` | integer | No | Page number for pagination, starting at 1. |
| `salary` | string | No | Salary filter value. |
| `sort_by` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-naukri-com-api-5f5984ac/search_jobs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date_posted":"<string>","experience":"<string>","keyword":"<string>","location":"<string>","page_no":"<integer>","salary":"<string>","sort_by":"<string>"}'
```
