{
  "openapi": "3.0.1",
  "info": {
    "title": "ATS Jobs Scraper — Greenhouse, Lever, Ashby, Workday & more",
    "description": "[💵 $2.00 / 1K] Scrape open jobs across 11 ATS platforms — Greenhouse, Lever, Ashby, Workday & more — in one unified schema. Auto-detects the ATS from a plain company domain. Monitoring mode returns only new jobs since your last run. For n8n, Make, Zapier & MCP. Official public APIs only.",
    "version": "0.3",
    "x-build-id": "nvwBn4hbHstTHgOyG"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/dataloft~ats-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-dataloft-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/dataloft~ats-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-dataloft-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/dataloft~ats-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-dataloft-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",
        "properties": {
          "boards": {
            "title": "Job board URLs",
            "type": "array",
            "description": "Career-site or ATS board URLs. Paste them exactly as you see them in a browser — the scraper works out which platform each one is. Examples: https://job-boards.greenhouse.io/airbnb, https://jobs.lever.co/spotify, https://jobs.ashbyhq.com/openai, https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite. You can also write platform:slug, e.g. greenhouse:airbnb.",
            "items": {
              "type": "string"
            }
          },
          "companyDomains": {
            "title": "Company websites (auto-detect the ATS)",
            "type": "array",
            "description": "Give a plain company website and the scraper finds which ATS runs its careers page, then pulls every open role. Use this when you have a list of target companies but not their board URLs.",
            "items": {
              "type": "string"
            }
          },
          "platforms": {
            "title": "Limit to these platforms",
            "type": "array",
            "description": "Leave empty to allow every supported platform. Useful when a company runs more than one board and you only want one of them.",
            "items": {
              "type": "string",
              "enum": [
                "greenhouse",
                "lever",
                "ashby",
                "workday",
                "smartrecruiters",
                "workable",
                "recruitee",
                "personio",
                "teamtailor",
                "bamboohr",
                "rippling"
              ],
              "enumTitles": [
                "Greenhouse",
                "Lever",
                "Ashby",
                "Workday",
                "SmartRecruiters",
                "Workable",
                "Recruitee",
                "Personio",
                "Teamtailor",
                "BambooHR",
                "Rippling"
              ]
            },
            "default": []
          },
          "includeDescription": {
            "title": "Include full job descriptions",
            "type": "boolean",
            "description": "Fetches the complete description as both HTML and plain text. Turn this off for a much faster run when you only need titles, locations and links.",
            "default": true
          },
          "remoteOnly": {
            "title": "Remote roles only",
            "type": "boolean",
            "description": "Keeps only roles the ATS flags as remote, or whose location reads as remote.",
            "default": false
          },
          "titleIncludes": {
            "title": "Job title must contain any of",
            "type": "array",
            "description": "Case-insensitive. A role is kept if its title contains at least one of these, e.g. engineer, designer, product manager.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "titleExcludes": {
            "title": "Skip job titles containing",
            "type": "array",
            "description": "Case-insensitive. Handy for dropping intern, contractor or director-level postings.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "locationIncludes": {
            "title": "Location must contain any of",
            "type": "array",
            "description": "Case-insensitive match against every location on the posting, e.g. berlin, united states, remote.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "departmentIncludes": {
            "title": "Department or team must contain any of",
            "type": "array",
            "description": "Case-insensitive match against the department or team the platform publishes.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "keywords": {
            "title": "Keyword must appear in title or description",
            "type": "array",
            "description": "Full-text filter, e.g. kubernetes, rust, series b.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "postedAfter": {
            "title": "Only roles posted after",
            "type": "string",
            "description": "ISO date such as 2026-08-01. Postings without a date are always kept."
          },
          "maxJobsPerCompany": {
            "title": "Max jobs per board",
            "minimum": 0,
            "type": "integer",
            "description": "0 means no limit.",
            "default": 0
          },
          "maxTotalJobs": {
            "title": "Max jobs in total",
            "minimum": 0,
            "type": "integer",
            "description": "Hard stop for the whole run. 0 means no limit. Use this to cap what you spend on a first test.",
            "default": 0
          },
          "concurrency": {
            "title": "Parallel boards",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many job boards to work through at once.",
            "default": 5
          },
          "deduplicate": {
            "title": "Remove duplicate postings",
            "type": "boolean",
            "description": "Drops the same role when it shows up on more than one board.",
            "default": true
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Optional. These are public JSON APIs, so a proxy is rarely needed — turn it on only if you are running very large jobs from a single IP.",
            "default": {
              "useApifyProxy": false
            }
          },
          "maxScanPerBoard": {
            "title": "Max postings to scan per board",
            "minimum": 0,
            "type": "integer",
            "description": "Safety limit that applies only when filters are set. A board with 5,000 postings will not be crawled end-to-end just because you asked for 20 engineers — the scan stops here and the run log tells you it did. Raise it if you need to look deeper.",
            "default": 1000
          },
          "onlyNewJobs": {
            "title": "Only new jobs since last run",
            "type": "boolean",
            "description": "Turns this into a job monitor. Every posting delivered is remembered in a named key-value store, and later runs skip anything already on that list — skipped postings are not saved to the dataset and are not charged for. The first run builds the baseline and returns everything it finds; from then on you get only what appeared since. Note the limits above count postings scanned, not new ones found, so pair this with a generous (or unset) \"Max jobs in total\".",
            "default": false
          },
          "seenStoreName": {
            "title": "Seen-jobs store name",
            "type": "string",
            "description": "Optional. Name of the key-value store that holds the seen-jobs list. Defaults to dataloft-seen-ats-jobs-scraper. Give each watchlist its own name when you run several monitors that should not share history.",
            "default": ""
          },
          "companies": {
            "title": "Companies (alias)",
            "type": "array",
            "description": "ALIAS — merged into \"Job board URLs\" / \"Company websites\" above. Accepts board URLs, platform:slug forms and bare company domains, so a task written for another job scraper runs here unchanged. Values that are neither a URL nor a domain are reported in the log and ignored.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "companyUrls": {
            "title": "Company URLs (alias)",
            "type": "array",
            "description": "ALIAS — same handling as \"Companies\": URLs become boards, bare domains go through ATS auto-detection.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "startUrls": {
            "title": "Start URLs (alias)",
            "type": "array",
            "description": "ALIAS — accepts the crawler-style list of {\"url\": \"…\"} objects as well as plain strings, e.g. [{\"url\": \"https://job-boards.greenhouse.io/airbnb\"}]. Each URL is treated as a job board; a bare domain goes through ATS auto-detection. Remote URL lists (requestsFromUrl) are not supported.",
            "default": []
          },
          "queries": {
            "title": "Queries (alias)",
            "type": "array",
            "description": "ALIAS — accepted for compatibility and handled exactly like \"Companies\". These are board or company identifiers, not search terms: to filter by keyword use \"Keyword must appear in title or description\" instead.",
            "default": [],
            "items": {
              "type": "string"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}