# Naukri Jobs API

Pull details for a specified number of Naukri job postings, including title, company, and experience

**Pricing:** $2 / 1k jobs

**Endpoint:** `POST /v1/data/naukri/job/run`

**Auth:** `Authorization: Bearer mk_live_...`

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `inputs` | string | Yes | A search keyword (e.g. 'software developer') or a Naukri search URL to scrape job listings from. |
| `maxResults` | integer | No | Number of jobs to return. Use 0 for all. |
| `freshness` | string | No | Filter to recently-posted jobs. |
| `sortBy` | string | No | Sort order for results. |
| `experience` | string | No | Required years of experience. |
| `workMode` | array | No | Filter by work arrangement. |
| `department` | array | No | Filter by department. |
| `salaryRange` | array | No | Filter by salary band (Indian Lakhs per Annum). |
| `companyType` | array | No | Filter by company type. |
| `roleCategory` | array | No | Filter by job role. |
| `industry` | array | No | Filter by industry. |
| `topCompanies` | array | No | Filter to specific top companies. |
| `postedBy` | array | No | Filter by who posted the listing. |
| `stipend` | array | No | Internship stipend range. |
| `duration` | array | No | Internship duration. |
| `ugCourse` | array | No | Required undergraduate course. |
| `pgCourse` | array | No | Required postgraduate course. |
| `cities` | array | No | Filter results to specific cities. |
| `fetchDetails` | boolean | No | Pull full job description, requirements, etc. for each result. Slower but richer data. |

## Example

```bash
curl -X POST https://api.mindcase.co/v1/data/naukri/job/run \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"params":{"inputs":"..."}}'
```

```python
import requests

resp = requests.post(
    "https://api.mindcase.co/v1/data/naukri/job/run",
    headers={"Authorization": "Bearer mk_live_YOUR_API_KEY"},
    json={"params": {
    "inputs": "..."
}},
)
data = resp.json()
```

## Get the results

`run` is async and returns a `job_id`. Poll until `status` is `completed`, then read the rows:

```bash
# 1) check status
curl https://api.mindcase.co/v1/jobs/JOB_ID \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"

# 2) when status == completed, fetch the rows
curl https://api.mindcase.co/v1/jobs/JOB_ID/results \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"
```

Full API reference (auth, jobs, balance, endpoints): https://mindcase.co/skills.md

## Response columns

| Field | Display name | Type |
|-------|--------------|------|
| `jobUrl` | Job URL | url |
| `jobId` | Job ID | text |
| `jobTitle` | Job Title | text |
| `company` | Company | text |
| `location` | Location | text |
| `minExperienceYrs` | Min Experience (Yrs) | number |
| `maxExperienceYrs` | Max Experience (Yrs) | number |
| `salaryMin` | Salary Min | currency |
| `salaryMax` | Salary Max | currency |
| `skills` | Skills | text |
| `description` | Description | text |
| `requirementsSummary` | Requirements Summary | text |
| `jobType` | Job Type | text |
| `posted` | Posted | text |
| `vacancies` | Vacancies | number |
| `views` | Views | number |
| `applicants` | Applicants | number |
| `applyUrl` | Apply URL | url |
| `appliesOnCompanySite` | Applies On Company Site | boolean |
| `hasQuestionnaire` | Has Questionnaire | boolean |
| `workplaceType` | Workplace Type | text |
| `hybridDetail` | Hybrid Detail | text |
| `industry` | Industry | text |
| `department` | Department | text |
| `roleCategory` | Role Category | text |
| `role` | Role | text |
| `educationUg` | Education UG | text |
| `educationPg` | Education PG | text |
| `listingSource` | Listing Source | text |
| `postedByConsultant` | Posted By Consultant | boolean |
| `hiringFor` | Hiring For | text |
| `companyDetails` | Company Details | object |
| `benchmarkRole` | Benchmark Role | text |
| `benchmarkMinCtcLakhs` | Benchmark Min CTC (Lakhs) | number |
| `benchmarkAvgCtcLakhs` | Benchmark Avg CTC (Lakhs) | number |
| `benchmarkMaxCtcLakhs` | Benchmark Max CTC (Lakhs) | number |
| `benchmarkSalariesUrl` | Benchmark Salaries URL | url |
| `benefits` | Benefits | text |
| `employeeReviews` | Employee Reviews | object_array |
| `diversityTags` | Diversity Tags | text |
| `walkInJob` | Walk-In Job | boolean |
| `walkInVenue` | Walk-In Venue | text |
| `walkInStart` | Walk-In Start | text |
| `walkInEnd` | Walk-In End | text |
| `walkInTiming` | Walk-In Timing | text |
| `walkInContact` | Walk-In Contact | text |
| `walkInPhone` | Walk-In Phone | text |
| `referenceCode` | Reference Code | text |
| `internshipDuration` | Internship Duration | text |
