{
  "openapi": "3.0.1",
  "info": {
    "title": "Greenhouse Jobs Scraper",
    "description": "Scrape every active job from any Greenhouse careers board — titles, locations, departments, offices, full descriptions, custom fields, and application form questions. Live from the official API, no cache or AI guesswork. Filter by title, location, department, date, or remote-only at the source.",
    "version": "0.1",
    "x-build-id": "T5rvIQXcGyHBzxDE3"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/schnellscrapers~greenhouse-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-schnellscrapers-greenhouse-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/schnellscrapers~greenhouse-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-schnellscrapers-greenhouse-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/schnellscrapers~greenhouse-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-schnellscrapers-greenhouse-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": "Greenhouse boards",
            "type": "array",
            "description": "Companies to pull jobs from. Paste the board token (e.g. `airbnb`, `stripe`) or any Greenhouse URL — `https://boards.greenhouse.io/airbnb`, `https://job-boards.greenhouse.io/airbnb`. The token is the last path segment in a company's Greenhouse careers URL.",
            "items": {
              "type": "string"
            }
          },
          "includeContent": {
            "title": "Include job description (HTML)",
            "type": "boolean",
            "description": "Include the HTML job description in each record. Turn off to shrink results by ~95% when you only need titles, locations, and links.",
            "default": true
          },
          "parseContent": {
            "title": "Also produce plain-text description",
            "type": "boolean",
            "description": "When the HTML description is included, also output a `contentText` field with HTML stripped and entities decoded. Handy for downstream search, embeddings, or LLM ingestion.",
            "default": false
          },
          "includeQuestions": {
            "title": "Include application form",
            "type": "boolean",
            "description": "**Costs one extra HTTP request per job.** For every emitted job, also fetch its application form structure — custom questions, demographic questions, location questions, and compliance notices. Leave off for large boards unless you need it.",
            "default": false
          },
          "titleFilter": {
            "title": "Title includes",
            "type": "array",
            "description": "Case-insensitive substring match against the job title. A record is kept if any term matches (e.g. `engineer`, `designer`). Leave empty to keep all titles.",
            "items": {
              "type": "string"
            }
          },
          "titleExcludeFilter": {
            "title": "Title excludes",
            "type": "array",
            "description": "Drop jobs whose title contains any of these substrings (e.g. `senior`, `manager`).",
            "items": {
              "type": "string"
            }
          },
          "locationFilter": {
            "title": "Location includes",
            "type": "array",
            "description": "Substring match against the job location string (e.g. `new york`, `berlin`, `remote`). Keep all locations if empty.",
            "items": {
              "type": "string"
            }
          },
          "locationExcludeFilter": {
            "title": "Location excludes",
            "type": "array",
            "description": "Drop jobs whose location matches any term (e.g. `india` to exclude India-based postings).",
            "items": {
              "type": "string"
            }
          },
          "departmentFilter": {
            "title": "Department includes",
            "type": "array",
            "description": "Substring match against department names attached to the job (e.g. `engineering`, `design`, `data`).",
            "items": {
              "type": "string"
            }
          },
          "officeFilter": {
            "title": "Office includes",
            "type": "array",
            "description": "Substring match against office names attached to the job (e.g. `san francisco`, `london`).",
            "items": {
              "type": "string"
            }
          },
          "companyFilter": {
            "title": "Company includes",
            "type": "array",
            "description": "Substring match against `companyName`. Useful when one Greenhouse board hosts multiple sub-brands.",
            "items": {
              "type": "string"
            }
          },
          "descriptionContains": {
            "title": "Description contains",
            "type": "array",
            "description": "Substring match against the job description body (e.g. `python`, `kubernetes`, `visa sponsorship`). Auto-enables `includeContent` if disabled.",
            "items": {
              "type": "string"
            }
          },
          "remoteOnly": {
            "title": "Remote only",
            "type": "boolean",
            "description": "Keep only jobs that look remote — matched against the location string, office name, and the common `Workplace Type` custom field. Strict: hybrid jobs are excluded.",
            "default": false
          },
          "updatedAfter": {
            "title": "Only jobs updated after",
            "type": "string",
            "description": "ISO 8601 date or timestamp (e.g. `2026-05-01` or `2026-05-01T00:00:00Z`). Drops jobs whose `updated_at` is older. Leave blank to keep every active job."
          },
          "maxItems": {
            "title": "Maximum records (total)",
            "minimum": 0,
            "maximum": 1000000,
            "type": "integer",
            "description": "Hard cap on total records emitted across all boards. Useful for cost-bounded test runs. Leave at 0 to emit every matching job.",
            "default": 0
          },
          "maxItemsPerBoard": {
            "title": "Maximum records per board",
            "minimum": 0,
            "maximum": 1000000,
            "type": "integer",
            "description": "Per-board cap on emitted records. Leave at 0 to emit every matching job from each board.",
            "default": 0
          },
          "dryRun": {
            "title": "Dry run",
            "type": "boolean",
            "description": "Fetch and parse the boards but do not write to the dataset. Use to preview without spending credits.",
            "default": false
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}