{
  "openapi": "3.0.1",
  "info": {
    "title": "ATS Jobs Scraper [$2/1k💰] | 116+ Platforms | Hiring Data",
    "description": "Scrape live job postings from 116+ ATS platforms - Greenhouse, Lever, Ashby, Workday and more for hiring-intelligence monitoring, sales prospecting, and job board data. Auto-detect the ATS from any company name or careers URL at $0.002 per result.",
    "version": "1.0",
    "x-build-id": "OrCPHBl6foKNbRKoh"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/ahmed_jasarevic~multi-ats-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-ahmed_jasarevic-multi-ats-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/ahmed_jasarevic~multi-ats-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-ahmed_jasarevic-multi-ats-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/ahmed_jasarevic~multi-ats-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-ahmed_jasarevic-multi-ats-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",
        "required": [
          "sites"
        ],
        "properties": {
          "sites": {
            "title": "ATS board URLs",
            "type": "array",
            "description": "ATS board URLs or company slugs. Supports Greenhouse, Lever, Ashby, Workday, SmartRecruiters, Personio, Workable, BambooHR, Jobvite, and 100+ more platforms. ATS is auto-detected from the URL.",
            "default": [
              "https://boards.greenhouse.io/lattice"
            ],
            "items": {
              "type": "string"
            }
          },
          "organizations": {
            "title": "Company names (auto-detect ATS)",
            "type": "array",
            "description": "Bare company names/slugs like [\"stripe\", \"notion\", \"ramp\"]. The ATS platform is auto-detected and the correct API is used.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "maxJobsPerSite": {
            "title": "Max jobs per site",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of job postings to scrape per site/company. 0 = all postings.",
            "default": 0
          },
          "maxSites": {
            "title": "Max sites",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of sites to process. 0 = all sites in the list.",
            "default": 0
          },
          "maxJobsTotal": {
            "title": "Max jobs for the whole run",
            "minimum": 0,
            "type": "integer",
            "description": "Hard ceiling on job rows across the entire run. Leave empty for no global cap.",
            "default": 0
          },
          "includeFullDescription": {
            "title": "Include full job description",
            "type": "boolean",
            "description": "Include the full HTML description on each row. When disabled, only plain text is kept.",
            "default": true
          },
          "maxConcurrency": {
            "title": "Max concurrency",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "How many sites to process in parallel. Higher = faster but more rate-limit risk.",
            "default": 10
          },
          "titleKeyword": {
            "title": "Title contains",
            "type": "string",
            "description": "Keep only jobs whose title contains this text (case-insensitive).",
            "default": ""
          },
          "keywords": {
            "title": "Keywords (title + description)",
            "type": "string",
            "description": "Keep only jobs matching these keywords across title and description. Space-separated terms are ALL required (AND).",
            "default": ""
          },
          "location": {
            "title": "Location contains",
            "type": "string",
            "description": "Keep only jobs whose location contains this text, e.g. \"remote\", \"London\", \"New York\".",
            "default": ""
          },
          "department": {
            "title": "Department contains",
            "type": "string",
            "description": "Keep only jobs whose department contains this text.",
            "default": ""
          },
          "employmentType": {
            "title": "Employment type contains",
            "type": "string",
            "description": "Keep only jobs whose employment type matches. E.g. \"full\", \"part\", \"contract\".",
            "default": ""
          },
          "remoteOnly": {
            "title": "Remote only",
            "type": "boolean",
            "description": "Keep only jobs flagged as remote.",
            "default": false
          },
          "postedAfter": {
            "title": "Posted on/after",
            "type": "string",
            "description": "Keep only jobs published on or after this date (YYYY-MM-DD).",
            "default": ""
          },
          "stateKey": {
            "title": "State key (change detection)",
            "type": "string",
            "description": "Any name to enable incremental/change detection across runs.",
            "default": ""
          },
          "onlyNewOrUpdated": {
            "title": "Emit only new + updated jobs",
            "type": "boolean",
            "description": "Requires a state key above. Drops unchanged jobs from output.",
            "default": false
          },
          "excludeBoilerplate": {
            "title": "Exclude boilerplate from description",
            "type": "boolean",
            "description": "When enabled, drops company description sections from the combined description.",
            "default": false
          },
          "includeRawJson": {
            "title": "Include raw ATS payload",
            "type": "boolean",
            "description": "Attach the original ATS job object to each row under a raw field.",
            "default": false
          },
          "translateToEnglish": {
            "title": "Translate job text to English",
            "type": "boolean",
            "description": "Auto-translate non-English titles/descriptions to English.",
            "default": false
          },
          "enrichEmails": {
            "title": "Enrich with company contact email",
            "type": "boolean",
            "description": "Enrich each company with a contact email by discovering its website.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Route requests through the Apify proxy. The proxy keeps your IP hidden and avoids rate limits.",
            "default": {
              "useApifyProxy": true
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}