{
  "openapi": "3.0.1",
  "info": {
    "title": "Naukri Job Scraper",
    "description": "A fast, reliable Naukri job scraper powered by Playwright + Crawlee + Apify. Extracts job listings & full job-details, supports keyword + location + experience filters, sorting, and optional application-type detection (Apply on Naukri vs Apply on Company Site).",
    "version": "0.2",
    "x-build-id": "JZFI2pzjlJgtuvS97"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/techupservices~naukri-job-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-techupservices-naukri-job-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/techupservices~naukri-job-scraper/runs": {
      "post": {
        "operationId": "runs-sync-techupservices-naukri-job-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/techupservices~naukri-job-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-techupservices-naukri-job-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",
        "required": [
          "query",
          "locations",
          "maxJobListings"
        ],
        "properties": {
          "query": {
            "title": "Search Query",
            "type": "string",
            "description": "Keyword(s) to search for on Naukri, e.g. \"product manager\".",
            "default": "product manager"
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "List of city or area names to search in, e.g. [\"pune\"].",
            "items": {
              "type": "string"
            },
            "default": [
              "pune"
            ]
          },
          "freshnessDays": {
            "title": "Freshness (Days)",
            "minimum": 0,
            "type": "integer",
            "description": "Only include jobs posted within the last N days.",
            "default": 1
          },
          "experienceYears": {
            "title": "Min Experience (Years)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum years of experience to filter by. Set to 0 to disable.",
            "default": 0
          },
          "maxJobListings": {
            "title": "Max Job Listings",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Upper bound on the number of job detail records to collect.",
            "default": 10
          },
          "sortBy": {
            "title": "Sort By",
            "enum": [
              "recommended",
              "relevance",
              "date"
            ],
            "type": "string",
            "description": "How to sort the Naukri results before extraction.",
            "default": "date"
          },
          "mode": {
            "title": "Mode",
            "enum": [
              "list",
              "list+details"
            ],
            "type": "string",
            "description": "Choose \"list\" to only scrape listing pages, or \"list+details\" to also open each job detail page.",
            "default": "list"
          },
          "enableApplicationType": {
            "title": "Detect Application Type (Apply On Naukri Vs Company)",
            "type": "boolean",
            "description": "Only used when MODE = \"list+details\". When enabled, the Actor will best-effort detect whether each job applies on Naukri or on the company site. Requires valid Naukri login. On Apify, this may still be null if anti-bot/captcha blocks the login.",
            "default": false
          },
          "naukriEmail": {
            "title": "Naukri Email",
            "type": "string",
            "description": "Your Naukri login email. Required ONLY if \"Detect Application Type\" is enabled and Mode = \"list+details\".",
            "default": ""
          },
          "naukriPassword": {
            "title": "Naukri Password",
            "type": "string",
            "description": "Your Naukri login password. Required ONLY if \"Detect Application Type\" is enabled and Mode = \"list+details\"."
          },
          "maxConcurrency": {
            "title": "Max Concurrency",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "Max number of concurrent Playwright pages to run.",
            "default": 2
          },
          "useProxy": {
            "title": "Use Apify Proxy",
            "type": "boolean",
            "description": "Toggle to route traffic via Apify Proxy (recommended for production).",
            "default": false
          },
          "proxyGroups": {
            "title": "Proxy Groups",
            "type": "array",
            "description": "Optional Apify proxy groups to use (e.g. [\"RESIDENTIAL\"]). Only used when \"Use Apify Proxy\" is true.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "headless": {
            "title": "Headless Browser",
            "type": "boolean",
            "description": "Run Playwright in headless mode. For debugging locally you can set this to false, but in Apify it will always effectively run headless.",
            "default": true
          },
          "slowMo": {
            "title": "SlowMo (ms)",
            "minimum": 0,
            "type": "integer",
            "description": "Delay between Playwright operations (0 for none). Useful for debugging locally.",
            "default": 0
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}