Retrieving digital assets...
Scrape job listings from Naukri.com based on keywords, location, and experience with anti-bot detection. Supports deep search for comprehensive job details including company reviews, salaries, and benefits.
99%
30s
500+
Apify Actor to scrape job listings from Naukri.com via API interception with advanced anti-bot detection measures. Supports both basic search and deep search for comprehensive job details.
| Field | Type | Description | Default |
|---|---|---|---|
| keywords | string | Job search keywords (e.g., 'devops engineer') | Required |
| location | string | City or location to filter by | Optional |
| experience | integer | Minimum years of experience | 0 |
| maxItems | integer | Maximum number of jobs to scrape | 100 |
| maxPages | integer | Maximum pages to scrape | 5 |
| deepSearch | boolean | Enable deep search for full job details | false |
| headless | boolean | Run in headless mode | true |
| proxyConfiguration | object | Proxy settings | Residential IN |
{
"jobId": "111225925275",
"title": "DevOps Engineer L3",
"company": "Wipro",
"companyId": 1384,
"companyUrl": "https://www.naukri.com/wipro-jobs-careers-1384",
"jobUrl": "https://www.naukri.com/job-listings-devops-engineer-l3-wipro...",
"jobType": "full-time",
"location": "Bengaluru",
"experience": "3-5 Yrs",
"salary": "Not disclosed",
"salaryDetail": {
"minimumSalary": null,
"maximumSalary": null,
"currency": "INR",
"hideSalary": true
},
"skills": ["devops", "ci/cd", "docker", "kubernetes"],
"description": "Job description text...",
"postedDate": "2025-12-11T10:59:27.280Z",
"footerPlaceholderLabel": "6 Days Ago",
"ambitionBoxData": {
"url": "https://www.ambitionbox.com/reviews/wipro-reviews",
"reviewsCount": 62584,
"aggregateRating": "3.6"
},
"scrapedAt": "2025-12-17T11:04:33.188Z",
"deepSearchCompleted": false
}
When deepSearch: true is enabled, you get all the basic fields PLUS:
{
"deepSearchCompleted": true,
"educationUg": ["B.Tech/B.E. in Any Specialization"],
"educationPg": ["Any Postgraduate"],
"educationDegreeCombination": "ugorpgorppg",
"preferredSkills": ["devops"],
"otherSkills": ["docker", "kubernetes", "jenkins", "git", "linux"],
"locationsDetailed": [
{"label": "Bengaluru", "url": "https://www.naukri.com/jobs-in-bangalore"}
],
"applyCount": 650,
"viewCount": 1415,
"vacancy": 5,
"fullDescription": "Complete HTML job description...",
"shortDescription": "Brief summary of the job...",
"employmentType": "Full Time, Permanent",
"roleCategory": "DevOps",
"jobRole": "DevOps Engineer",
"functionalArea": "Engineering - Software & QA",
"industry": "IT Services & Consulting",
"wfhLabel": "Remote",
"salaryLabel": "6-11 Lacs",
"companyAddress": "Full company address...",
"companyDescription": "Detailed company description...",
"companyWebsiteUrl": "https://www.company.com",
"overallRating": 3.6,
"followCount": "5000",
"overallReviewCount": "62584",
"employeeReviews": [
{
"title": "Devops Engineer for 3 years",
"likes": "Work life balance, good environment",
"dislikes": "Low salary hikes",
"rating": "4",
"publishedOn": "24 Dec 2024"
}
],
"averageCtc": "7.0",
"minCtc": "5.0",
"maxCtc": "12.0",
"salaryProfileName": "Devops Engineer",
"salariesUrl": "https://www.ambitionbox.com/salaries/...",
"employeeBenefits": [
{"name": "Health insurance", "status": "true"},
{"name": "Performance bonus", "status": "true"},
{"name": "WFH setup", "status": "true"}
],
"benefitsUrl": "https://www.ambitionbox.com/benefits/...",
"awards": [
{"title": "Best Employer 2024", "year": 2024}
],
"keyHighlights": [
{"value": 4.2, "label": "Job Security"},
{"value": 4.1, "label": "Work Life Balance"}
]
}
The actor provides multiple views for different use cases:
deepSearch for comprehensive job details (recommended){
"keywords": "devops engineer",
"location": "Bangalore",
"experience": 3,
"maxItems": 50,
"maxPages": 3,
"deepSearch": true,
"headless": true,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "IN"
}
}
cd naukri-jobs-scraper
npm install
npx playwright install firefox
npm start
For best results, use Residential proxies with India (IN) location:
{
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": ["RESIDENTIAL"],
"apifyProxyCountry": "IN"
}
}
maxItems: 100 and deepSearch: true for best resultsExplore more automation tools and scrapers to supercharge your data acquisition workflow.