{
  "openapi": "3.0.1",
  "info": {
    "title": "Greenhouse, Lever & Ashby Jobs Scraper",
    "description": "Scrape jobs from Greenhouse, Lever and Ashby career pages. Get titles, locations, remote flags, salary where available, descriptions and apply links. Filter before billing. No ATS API key or proxy. $1 per 1,000 jobs plus the platform start charge.",
    "version": "0.0",
    "x-build-id": "s4WWjTgjJmbOvNQus"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/kaz_kakyo~greenhouse-lever-ashby-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-kaz_kakyo-greenhouse-lever-ashby-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/kaz_kakyo~greenhouse-lever-ashby-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-kaz_kakyo-greenhouse-lever-ashby-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/kaz_kakyo~greenhouse-lever-ashby-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-kaz_kakyo-greenhouse-lever-ashby-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": [
          "boards"
        ],
        "properties": {
          "boards": {
            "title": "Company job boards",
            "minItems": 1,
            "type": "array",
            "description": "Required. One entry per company board. Accepts careers URLs, with or without https:// (https://boards.greenhouse.io/COMPANY, https://job-boards.greenhouse.io/COMPANY, https://jobs.lever.co/COMPANY, https://jobs.ashbyhq.com/COMPANY; Lever EU boards on jobs.eu.lever.co are supported, Greenhouse EU boards are best-effort), vendor tokens (greenhouse/COMPANY, lever/COMPANY, ashby/COMPANY) or a bare COMPANY slug (all three vendors are tried; the first that resolves is delivered; a bare slug that duplicates an explicit global entry is ignored; Lever EU remains separate). Unknown or unreachable boards become uncharged error rows — the run still succeeds. Max 200 boards per run (excess recorded as a notice).",
            "items": {
              "type": "string"
            }
          },
          "maxJobsPerBoard": {
            "title": "Max jobs per board",
            "minimum": 1,
            "maximum": 5000,
            "type": "integer",
            "description": "Cap on jobs delivered per board, applied after filters, in the board's native order. The prefill (10) keeps a test run cheap; raise it to 5000 for larger boards. Lever returns a pagination-limit error if all 50 fetched pages are full, rather than silently delivering an incomplete board.",
            "default": 500
          },
          "descriptionFormat": {
            "title": "Description format",
            "enum": [
              "text",
              "html",
              "none"
            ],
            "type": "string",
            "description": "text = plain-text description (HTML stripped, entities decoded — compact for LLM/agent use); html = the description HTML as published; none = description is null (smallest rows; all other fields, including Greenhouse departments and offices, are still delivered).",
            "default": "text"
          },
          "keyword": {
            "title": "Title keyword",
            "type": "string",
            "description": "Optional. Case-insensitive substring match on the job title (e.g. engineer, sales, designer). Applied before billing and before maxJobsPerBoard."
          },
          "location": {
            "title": "Location contains",
            "type": "string",
            "description": "Optional. Case-insensitive substring match on the job's location text (primary and secondary locations, country), e.g. London, Remote, United States."
          },
          "remoteOnly": {
            "title": "Remote jobs only",
            "type": "boolean",
            "description": "Deliver only jobs the ATS flags as remote (Ashby isRemote, Lever workplaceType = remote, Greenhouse location or title containing the word remote).",
            "default": false
          },
          "postedAfter": {
            "title": "Posted on or after",
            "pattern": "^$|^\\d{4}-\\d{2}-\\d{2}(T[0-9:.+\\-Z]*)?$",
            "type": "string",
            "description": "Optional ISO 8601 date (e.g. 2026-08-01). Keeps jobs whose posted date (Greenhouse: first-published date when its list API includes it, else last-updated date; Lever: createdAt; Ashby: publishedAt) is on or after this date; postings that carry no date at all are excluded. An unparsable value becomes an uncharged error row and the run stops."
          },
          "maxTotalJobs": {
            "title": "Max jobs per run",
            "minimum": 1,
            "maximum": 20000,
            "type": "integer",
            "description": "Hard cap on delivered jobs across all boards (budget protection). Also cap spend with the run's max total charge.",
            "default": 5000
          },
          "includeBoardSummary": {
            "title": "Write board summary rows",
            "type": "boolean",
            "description": "In the separate status dataset, also write one uncharged type: board row per successfully fetched board with status (ok | empty | duplicate), total, filtered and delivered counts, and a note when a cap or the budget cut it short. Boards that could not be fetched get an uncharged type: error row (not-found, blocked, rate-limited, …) instead. This is how an empty-but-valid board (a company that publishes nothing through the public API) is told apart from a wrong slug.",
            "default": 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
                  },
                  "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}