{
  "openapi": "3.0.1",
  "info": {
    "title": "Naukri Jobs Scraper",
    "description": "Scrape Naukri.com job listings across India — titles, companies, salaries, skills, descriptions, AmbitionBox reviews. Filter by keyword, location, experience, salary range, work mode, and 15+ filters. Two modes: fast search summaries or full job details. Export as JSON, CSV, Excel.",
    "version": "1.0",
    "x-build-id": "ignj1knaedAeVXGBR"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/parsebird~naukri-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-parsebird-naukri-jobs-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/parsebird~naukri-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-parsebird-naukri-jobs-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/parsebird~naukri-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-parsebird-naukri-jobs-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": "Search Keyword",
            "type": "string",
            "description": "Job search term (e.g., 'software developer', 'data analyst'). Ignored if searchUrl or jobIds is provided."
          },
          "searchUrl": {
            "title": "Naukri Search URL",
            "type": "string",
            "description": "Paste a Naukri.com search results URL. Supports /<keyword>-jobs, /jobs-in-<location>, and /<keyword>-jobs-in-<location> URLs. Ignored if jobIds is provided."
          },
          "jobIds": {
            "title": "Job IDs",
            "type": "array",
            "description": "List of specific Naukri Job IDs to fetch directly (e.g., [\"220126040161\", \"170424007054\"]). Skips search — fetches full details for each ID. Overrides keyword and searchUrl."
          },
          "maxJobs": {
            "title": "Maximum Jobs",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of job listings to scrape.",
            "default": 100
          },
          "fetchDetails": {
            "title": "Fetch Full Details",
            "type": "boolean",
            "description": "Fetch complete job details including full description, skills breakdown, company profile, and AmbitionBox reviews. Costs $3/1000 instead of $1/1000.",
            "default": false
          },
          "sortBy": {
            "title": "Sort By",
            "enum": [
              "relevance",
              "date"
            ],
            "type": "string",
            "description": "Sort job listings by relevance or posting date. Works with both keyword search and searchUrl.",
            "default": "relevance"
          },
          "freshness": {
            "title": "Posting Date",
            "enum": [
              "all",
              "1",
              "3",
              "7",
              "15",
              "30"
            ],
            "type": "string",
            "description": "Filter jobs by how recently they were posted.",
            "default": "all"
          },
          "workMode": {
            "title": "Work Mode",
            "type": "array",
            "description": "Filter by work arrangement.",
            "items": {
              "type": "string",
              "enum": [
                "office",
                "temporary_wfh",
                "remote",
                "hybrid"
              ],
              "enumTitles": [
                "Office",
                "Temporary WFH",
                "Remote",
                "Hybrid"
              ]
            }
          },
          "experience": {
            "title": "Experience (Years)",
            "type": "string",
            "description": "Filter by years of experience required (e.g., '0', '5', '10'). Range: 0 to 30."
          },
          "salaryRange": {
            "title": "Salary Range",
            "type": "array",
            "description": "Filter by annual salary in Lakhs (e.g., [\"10to15\", \"15to25\"] for 10-15 and 15-25 Lakhs)."
          },
          "cities": {
            "title": "City IDs",
            "type": "array",
            "description": "List of Naukri city IDs to filter job locations (e.g., [\"17\", \"97\", \"9508\"] for Mumbai, Delhi, Bangalore)."
          },
          "department": {
            "title": "Department IDs",
            "type": "array",
            "description": "List of department IDs to filter jobs (e.g., [\"5\"] for Engineering)."
          },
          "companyType": {
            "title": "Company Type IDs",
            "type": "array",
            "description": "Filter by company type IDs (e.g., [\"213\", \"217\"] for Foreign MNC, Startup)."
          },
          "roleCategory": {
            "title": "Role Category IDs",
            "type": "array",
            "description": "Filter by role category IDs (e.g., [\"1028\"] for Software Development)."
          },
          "industry": {
            "title": "Industry IDs",
            "type": "array",
            "description": "Filter by industry type IDs (e.g., [\"25\", \"14\"] for IT Services, Software Product)."
          },
          "postedBy": {
            "title": "Posted By",
            "type": "array",
            "description": "Filter by who posted the job (e.g., [\"1\"] for Company Jobs, [\"2\"] for Consultant Jobs)."
          },
          "topCompanies": {
            "title": "Top Company IDs",
            "type": "array",
            "description": "Filter for jobs from specific top company IDs."
          },
          "ugCourse": {
            "title": "UG Course IDs",
            "type": "array",
            "description": "Filter by undergraduate course requirement IDs."
          },
          "pgCourse": {
            "title": "PG Course IDs",
            "type": "array",
            "description": "Filter by postgraduate course requirement IDs."
          },
          "stipend": {
            "title": "Stipend Range",
            "type": "array",
            "description": "For internships, filter by stipend range."
          },
          "duration": {
            "title": "Duration (Months)",
            "type": "array",
            "description": "For internships, filter by duration in months."
          },
          "proxyConfiguration": {
            "title": "Proxy Configuration",
            "type": "object",
            "description": "Proxy settings. Residential proxies are recommended for reliable scraping of Naukri.com."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}