scraper
Back to API docs

Overview

  • Overview

APIs

  • POSTJobs
  • POSTJob Detail

Naukri Job Detail

2 credits

Get one public Naukri job by ID or URL.

POST/api/v1/tools/naukri/job-detail

Parameters

jobIdstring

Naukri job ID with 12 to 30 decimal digits. Provide this or jobUrl.

jobUrlstring

Public HTTPS www.naukri.com job URL that ends with a 12-to-30-digit ID. Provide this or jobId.

Response Schema

dataobject

Naukri job detail result

jobobject

Stable full Naukri job record

metaobject

Request metadata

toolstring

Tool name (naukri-job-detail)

creditsUsednumber

Credits consumed (2)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/naukri/job-detail \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"jobId": "110826930912"
}'

Response Example

{
"data": {
"job": {
"id": "110826930912",
"title": {
"text": "Software Engineer"
},
"urls": {
"naukri": "https://www.naukri.com/job-listings-software-engineer-bengaluru-110826930912",
"apply": null,
"external": null
},
"description": {
"snippet": "Build reliable software systems.",
"text": "Build reliable software systems.",
"html": null
},
"company": {
"name": "Example Technologies"
},
"location": {
"text": "Bengaluru"
},
"meta": {
"schemaVersion": "2.1",
"detailStatus": "complete"
}
}
},
"meta": {
"tool": "naukri-job-detail",
"creditsUsed": 2,
"requestId": "req_abc123"
}
}