EveryData platform API
Naukri API
Naukri offers the 2 declared views used here for Naukri job discovery and jobs listed on a company page, and `search`, `company_jobs` must each be read according to its own contract.
Naukri keeps `search` (matching public results) separate from `company_jobs` (company job listings). The `keyword` and `url` parameters apply only within their respective contracts.
- Endpoint
- POST /api/v1/social
- Capabilities
- 2
- Per 1,000
- $1.389
Available capabilities
Compare the Naukri actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.
| Action | Required | Optional | Delivery | Limit | Per 1,000 | Response fields |
|---|---|---|---|---|---|---|
searchSearch Search public results on Naukri. Accepts these parameters: | keyword | — | Sync delivery | Catalog values: defaultLimit=50, maxLimit=200. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count. | $1.39 per 1,000 requests | id · url · title · company_name · location · experience · salary · currency · text · posted_at · platform |
company_jobsCompany jobs Use the | url | date_range, sort | Sync delivery | Catalog values: defaultLimit=20, maxLimit=100. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count. | $1.39 per 1,000 requests | id · url · title · company_name · company_url · location · experience · salary · currency · employment_type · work_mode · job_role · industry · functional_area · vacancy · apply_count · view_count · skills · text · posted_at · platform |
What does each Naukri action accept?
Each answer below pairs one callable action with its real inputs. Parameter meanings and allowed values are action-specific; a familiar name does not carry the same meaning across every platform.
Official sources are linked only to clarify the platform term beside them. They do not imply platform authorization or endorsement, and they do not add official-site features to the EveryInfra API contract.
What do the Naukri search parameters mean?
Search public results on Naukri. Accepts these parameters: keyword. Returns these fields: currency, posted_at, experience, and title.
keywordRequired- Specifies job search keywords (such as Python developer) for querying open roles in search, rather than accepting company IDs.Naukri: Job search versus application workflowsNaukri separates job discovery by skills, job titles, or company names from downstream application steps, supplemental questionnaires, and redirects to external corporate career sites. This action only retrieves job listings; official site filters like location and salary are not automatically available as public parameters here.Checked
What do the Naukri company_jobs parameters mean?
Use the company_jobs action on Naukri. Accepts these parameters: date_range, sort, and url. Returns these fields: title, work_mode, apply_count, and posted_at.
urlRequired- Specifies the full company page URL on Naukri or Naukrigulf for company_jobs. Automatically appends tab=jobs if no tab query parameter is present while preserving existing tab parameters; provide direct job page links to avoid landing on non-job sections.Naukri: Company job pages versus actual application entry pointsNaukri notes that certain job postings require applicants to redirect to company websites, with responses remaining entirely at the employer's discretion. Reading company jobs or retrieving apply_count does not mean an application has been submitted, an interview has been granted, or an application status has been established.Checked
date_rangeOptional- Filters job publishing dates for company_jobs using any_time, last_24_hours, last_7_days, last_30_days, or last_90_days. These filters are not supported on standard search actions.Allowed values:
any_timelast_24_hourslast_30_dayslast_7_dayslast_90_days sortOptional- Sets job listing sorting in company_jobs to newest or relevance. Standard search actions are restricted to relevance sorting.Allowed values:
newestrelevance
How to use the Naukri API
- 01Read the public catalog and choose a platform action.
- 02Send the platform, action, and required parameters to POST /api/v1/social.
- 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
- 04Store the structured response fields needed by your application.
curl -X POST https://api.everyinfra.com/api/v1/social \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"platform":"naukri","action":"search","params":{"keyword":"<keyword>"}}'
Naukri API questions
What can I retrieve with the Naukri API?
Set platform to naukri. The current catalog lists search and company jobs. These action names identify different Naukri objects or views; they are not interchangeable search modes.
Which input starts a Naukri `search` request?
Specifies job search keywords (such as Python developer) for querying open roles in search, rather than accepting company IDs. Send it as keyword inside params.
Which fields can Naukri `search` return?
Its declared schema includes title, company_name, location, and experience. A declared field can still be absent from an individual source record, and every other action has its own field list.
Does every Naukri action return immediately?
No assumption is needed: this page labels each action's delivery mode. The current catalog contains sync delivery; poll a returned job ID only for an action labeled asynchronous.