# High Salary Naukri Jobs Scraper - Above 25 Lakhs

**Use case:** 

Scrape Naukri.com jobs paying more than 25 lakhs a year, with the salary band, experience and company rating as numbers you can sort and filter.

## Input

```json
{
  "platform": "naukri",
  "searchQueries": [
    "manager"
  ],
  "jobIds": [
    "150126031660"
  ],
  "locations": [
    "bangalore",
    "pune"
  ],
  "searchUrls": [
    "https://www.naukri.com/data-scientist-jobs-in-bangalore"
  ],
  "maxItems": 100,
  "includeJobDescription": false,
  "minSalaryLakhs": 25,
  "onlyWithSalary": true,
  "workMode": "any",
  "postedWithinDays": "any",
  "employerType": "any",
  "titleMustInclude": [
    "python",
    "backend"
  ],
  "titleMustExclude": [
    "intern",
    "trainee"
  ],
  "sortBy": "date",
  "onlyNewJobs": false,
  "dedupStoreName": "naukri-seen-jobs",
  "maxConcurrency": 10,
  "requestsPerSecond": 5,
  "maxRequestRetries": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Job title"
  },
  "companyName": {
    "label": "Company"
  },
  "location": {
    "label": "Location"
  },
  "salaryMinLakhs": {
    "label": "Min (lakhs)"
  },
  "salaryMaxLakhs": {
    "label": "Max (lakhs)"
  },
  "salaryDisclosed": {
    "label": "Disclosed"
  },
  "experienceMin": {
    "label": "Exp min"
  },
  "experienceMax": {
    "label": "Exp max"
  },
  "skills": {
    "label": "Skills"
  },
  "jobUrl": {
    "label": "Job URL"
  }
}
```

## About this Actor

This example demonstrates how to use [Naukri Job Scraper](https://apify.com/webdata_labs/naukri-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/webdata_labs/naukri-scraper) to learn more, explore other use cases, and run it yourself.