# Naukri Jobs

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

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

**Endpoint:** `POST /api/v1/agents/naukri/job/run`

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

## Parameters

| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| `inputs` | array | Yes | One per line. You can input search keywords (e.g. 'software developer'), Naukri search URLs, or specific Job IDs. |
| `maxResults` | integer | No | The maximum number of job listings to scrape. Use 0 for all (minimum: 50). |
| `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 by city. One per line. |
| `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/api/v1/agents/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/api/v1/agents/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/api/v1/jobs/JOB_ID \
  -H "Authorization: Bearer mk_live_YOUR_API_KEY"

# 2) when status == completed, fetch the rows
curl https://api.mindcase.co/api/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 |
| `companyName` | Company Name | text |
| `location` | Location | text |
| `experience` | Experience | text |
| `minExperienceYrs` | Min Experience (Yrs) | number |
| `maxExperienceYrs` | Max Experience (Yrs) | number |
| `salary` | Salary | text |
| `salaryMin` | Salary Min | currency |
| `salaryMax` | Salary Max | currency |
| `salaryHidden` | Salary Hidden | boolean |
| `skills` | Skills | text |
| `preferredSkills` | Preferred Skills | text |
| `description` | Description | text |
| `requirementsSummary` | Requirements Summary | text |
| `jobType` | Job Type | text |
| `posted` | Posted | text |
| `firstPosted` | First Posted | text |
| `postedLabel` | Posted Label | 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 |
| `companyJobsUrl` | Company Jobs URL | url |
| `logo` | Logo | url |
| `companyWebsite` | Company Website | url |
| `aboutCompany` | About Company | text |
| `companyAddress` | Company Address | text |
| `companyHq` | Company HQ | text |
| `naukriFollowers` | Naukri Followers | number |
| `employerRating` | Employer Rating | rating |
| `employerReviewCount` | Employer Review Count | number |
| `employerReviewsUrl` | Employer Reviews URL | url |
| `benchmarkRole` | Benchmark Role | text |
| `benchmarkMinCtcLakhs` | Benchmark Min CTC (Lakhs) | number |
| `benchmarkAvgCtcLakhs` | Benchmark Avg CTC (Lakhs) | number |
