{
  "openapi": "3.0.1",
  "info": {
    "title": "ATS Jobs API + Change Feed: Greenhouse, Lever, Ashby, Workday",
    "description": "Jobs API for career sites on Greenhouse, Lever, Ashby or Workday. Name your companies, get their public job board listings in one stable schema. Changes-only mode returns what was added, updated or closed since the last run: a daily hiring change feed. Official public endpoints, no personal data.",
    "version": "0.4",
    "x-build-id": "vTMEwpLfrYgEsbMbI"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/honokasoft~ats-job-listings/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-honokasoft-ats-job-listings",
        "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/honokasoft~ats-job-listings/runs": {
      "post": {
        "operationId": "runs-sync-honokasoft-ats-job-listings",
        "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/honokasoft~ats-job-listings/run-sync": {
      "post": {
        "operationId": "run-sync-honokasoft-ats-job-listings",
        "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": [
          "companies"
        ],
        "properties": {
          "companies": {
            "title": "Companies (job board slugs or URLs)",
            "minItems": 1,
            "type": "array",
            "description": "One entry per company. Accepts `greenhouse:stripe`, `lever:spotify`, `ashby:notion`, `workday:nvidia.wd5/NVIDIAExternalCareerSite`, or a job board URL such as https://boards.greenhouse.io/stripe, https://jobs.lever.co/spotify, https://jobs.ashbyhq.com/notion, https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite. Unknown or misspelled slugs are reported in the run summary, not silently skipped.",
            "items": {
              "type": "string"
            }
          },
          "titleKeywords": {
            "title": "Title keywords (optional)",
            "type": "array",
            "description": "Keep only jobs whose title contains at least one of these words (case-insensitive). Leave empty to keep all jobs.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "remoteOnly": {
            "title": "Remote only",
            "type": "boolean",
            "description": "Keep only jobs the ATS marks as remote, or whose location text contains 'remote'. On Workday the location only exists on the per-posting detail page, so setting this makes the run fetch Workday details (one request per posting).",
            "default": false
          },
          "publishedAfter": {
            "title": "Published after (ISO date, optional)",
            "type": "string",
            "description": "Keep only jobs published on or after this date, e.g. 2026-09-01. Lever and Ashby expose the publish date; Greenhouse exposes `first_published` on most boards. On Workday the date only exists on the per-posting detail page, so setting this makes the run fetch Workday details (one request per posting)."
          },
          "includeDescription": {
            "title": "Include job description",
            "type": "boolean",
            "description": "Include `descriptionHtml` and `descriptionText` in each item. Makes items larger; off by default.",
            "default": false
          },
          "maxJobsPerCompany": {
            "title": "Max jobs per company",
            "minimum": 0,
            "type": "integer",
            "description": "0 means no limit.",
            "default": 0
          },
          "mode": {
            "title": "Mode",
            "enum": [
              "all",
              "diff"
            ],
            "type": "string",
            "description": "**all**: return every posting that passes your filters, every run. **diff**: return only what changed since this watch's previous run (new, updated and closed postings). Diff mode is meant to be run on a schedule, e.g. daily.",
            "default": "all"
          },
          "watchName": {
            "title": "Watch name (diff mode)",
            "type": "string",
            "description": "Names the stored snapshot, so you can run several independent watches (different company lists or filters) from one account. Change it and the next run starts a fresh baseline.",
            "default": "default"
          },
          "includeUpdated": {
            "title": "Report updated postings (diff mode)",
            "type": "boolean",
            "description": "Report a posting again when its title, location, department, employment type, remote flag or published compensation changed. Turn off to get only new and closed postings.",
            "default": true
          },
          "emitOnFirstRun": {
            "title": "Return the full list on the first run (diff mode)",
            "type": "boolean",
            "description": "Off by default: the first run of a watch saves a baseline, returns nothing and charges nothing, and the next run reports the changes. Turn on if you want the current postings as the first delivery.",
            "default": false
          },
          "workdayDetails": {
            "title": "Workday detail requests",
            "enum": [
              "auto",
              "always",
              "never"
            ],
            "type": "string",
            "description": "Workday's board endpoint returns only the title, the requisition id and a label such as \"2 Locations\"; the real location, the posting date and the employment type need one extra request per posting. **auto** (recommended): in Changes-only mode, fetch details just for the postings that changed, which is a handful per day; in All-postings mode, skip them unless Remote only / Published after require them. **always**: fetch details for every Workday posting (accurate but one request per posting, so a 2,000-job board is slow). **never**: list fields only; `location`, `publishedAt` and `employmentType` stay null for Workday. Ignored for Greenhouse, Lever and Ashby, which return everything in one request.",
            "default": "auto"
          }
        }
      },
      "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}