scraper
Back to API docs

Overview

  • Overview

APIs

  • POSTJobs
  • POSTJob Detail

Naukri Jobs

1 credit; 2 with details

Search public Naukri jobs in India with typed filters.

POST/api/v1/tools/naukri/jobs

Parameters

keywordstring

Job title, skill, or keyword. Maximum 200 characters. Defaults to "".

locationstring

Free-text India location. Maximum 200 characters. Defaults to "".

maxItemsnumber

Maximum jobs. Integer from 1 to 100. Defaults to 20. When fetchDetails is true, the maximum is 10.

fetchDetailsboolean

Add full details to each search result. Defaults to false.

filtersobject

Job filters: sort, freshness, experience, workModes, salaryRanges, postedBy, and locationRadiusKm. locationRadiusKm needs location or advancedFilters.cityIds.

internshipFiltersobject

Internship filters: internships, internshipStipends, internshipDurations, and campusJobs.

advancedFiltersobject

Verified Naukri selectors: companyId; company, city, locality, origin city, department, industry, role, job type, employment type, and course ID lists; companyName; education specializations; and localityRadiusKm.

Response Schema

dataobject

Naukri job search result

jobsobject[]

Stable Naukri job records

countnumber

Jobs returned

totalResultsnumber | null

Source result estimate

truncatedboolean

Whether a deadline or limit cut the result

metaobject

Request metadata

toolstring

Tool name (naukri-jobs)

creditsUsednumber

Credits consumed: 1 for search or 2 with fetchDetails

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/naukri/jobs \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"keyword": "software engineer",
"location": "Bengaluru",
"maxItems": 10,
"fetchDetails": true,
"filters": {
"sort": "date",
"freshness": "7",
"workModes": [
"remote",
"hybrid"
],
"salaryRanges": [
"15-25-lakhs"
],
"postedBy": [
"company"
]
}
}'

Response Example

{
"data": {
"jobs": [
{
"id": "110826930912",
"title": {
"text": "Software Engineer"
},
"urls": {
"naukri": "https://www.naukri.com/job-listings-software-engineer-bengaluru-110826930912",
"apply": null,
"external": null
},
"company": {
"name": "Example Technologies"
},
"location": {
"text": "Bengaluru"
},
"workArrangement": {
"type": "hybrid",
"label": "Hybrid"
},
"experience": {
"text": "3-6 years",
"minYears": 3,
"maxYears": 6
},
"salary": {
"text": "Not disclosed"
},
"meta": {
"schemaVersion": "2.1",
"detailStatus": "complete"
}
}
],
"count": 1,
"totalResults": 1250,
"truncated": false
},
"meta": {
"tool": "naukri-jobs",
"creditsUsed": 2,
"requestId": "req_abc123"
}
}