{
  "openapi": "3.0.1",
  "info": {
    "title": "Naukri Scraper - Jobs, Salaries, Skills & Recruiter Leads",
    "description": "Scrape Naukri.com, India's #1 job board, into structured data: salary, key skills, experience, full job description, AmbitionBox company ratings, apply links & recruiter contacts per job. Search by keyword, city & filters or paste a Naukri URL. Monitor mode for new-job alerts.",
    "version": "0.1",
    "x-build-id": "R9PFCXdkZcOQmkyv8"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapesage~naukri-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapesage-naukri-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/scrapesage~naukri-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapesage-naukri-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/scrapesage~naukri-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapesage-naukri-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "keyword": {
            "title": "Keyword / role / skill",
            "type": "string",
            "description": "Job title, skill or company to search on Naukri (e.g. 'python developer', 'data scientist', 'sales manager'). Leave blank to browse a whole city/location, or use Search URLs below for full filter control."
          },
          "location": {
            "title": "Location (city)",
            "type": "string",
            "description": "City / region to filter by, as it appears on Naukri (e.g. 'Bangalore', 'Mumbai', 'Delhi / NCR', 'Pune', 'Hyderabad', 'Remote'). Leave blank for all-India."
          },
          "searchUrls": {
            "title": "Search URLs (power mode)",
            "type": "array",
            "description": "Paste one or more Naukri search-result URLs with every filter you want already applied in the Naukri UI (copy the address bar). Overrides Keyword/Location. Example: https://www.naukri.com/python-developer-jobs-in-bangalore",
            "items": {
              "type": "string"
            }
          },
          "maxJobs": {
            "title": "Max jobs",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of jobs to return across all searches. Set 0 for unlimited (returns everything Naukri lists for the query — can be large; the run self-limits to stay inside its time budget).",
            "default": 100
          },
          "fetchDetails": {
            "title": "Fetch full details (JD + recruiter)",
            "type": "boolean",
            "description": "Open each job's detail page for the complete job description, education, employment type, role, full recruiter/HR name, and posting stats. Slower and costs a detail event per job. Off = the (already rich) search-level record: title, company, salary, skills, experience, location, AmbitionBox rating, apply link.",
            "default": false
          },
          "jobAge": {
            "title": "Posted within (days)",
            "type": "integer",
            "description": "Only jobs posted within this many days (Naukri freshness filter). 0 / blank = any time. Common values: 1, 3, 7, 15, 30.",
            "default": 0
          },
          "experienceYears": {
            "title": "Experience (years)",
            "minimum": 0,
            "maximum": 30,
            "type": "integer",
            "description": "Filter to jobs matching this many years of experience (Naukri 'experience' filter). Blank = any."
          },
          "minSalaryLakhs": {
            "title": "Min salary (₹ lakhs / year)",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only jobs whose maximum annual CTC is at least this many lakhs (₹). Applied to the parsed salary range. Blank = any."
          },
          "workMode": {
            "title": "Work mode",
            "type": "array",
            "description": "Filter by work arrangement.",
            "items": {
              "type": "string",
              "enum": [
                "work-from-office",
                "hybrid",
                "remote"
              ],
              "enumTitles": [
                "Work from office",
                "Hybrid",
                "Remote / WFH"
              ]
            }
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "relevance",
              "date",
              "salary"
            ],
            "type": "string",
            "description": "Result ordering.",
            "default": "relevance"
          },
          "withContactOnly": {
            "title": "Only jobs with a recruiter contact",
            "type": "boolean",
            "description": "Lead-gen mode: keep only jobs that expose a recruiter/HR name, email or phone. Requires Fetch full details.",
            "default": false
          },
          "monitorMode": {
            "title": "Monitor mode (only new/changed jobs)",
            "type": "boolean",
            "description": "Remember jobs seen on previous runs (in a named key-value store) and emit only NEW or CHANGED postings. Pair with Apify Schedules for a hiring-alert / fresh-jobs feed.",
            "default": false
          },
          "monitorKey": {
            "title": "Monitor key",
            "type": "string",
            "description": "Names the memory bucket for Monitor mode. Use a distinct key per saved search so their histories don't mix.",
            "default": "default"
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Naukri serves from India and gates its job API behind an in-browser token — residential India IPs are strongly recommended. Defaults to Apify Residential, country IN. You can supply your own (BYO) proxy URLs.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "IN"
            }
          },
          "headful": {
            "title": "Headful browser",
            "type": "boolean",
            "description": "Run the anti-detect browser headful (recommended — mints Naukri's job-API token more reliably). Turn off only to debug.",
            "default": true
          },
          "debugMode": {
            "title": "Debug mode",
            "type": "boolean",
            "description": "Save raw API responses and page HTML to the key-value store for troubleshooting field coverage.",
            "default": false
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}