{
  "openapi": "3.0.1",
  "info": {
    "title": "Greenhouse Job Board API — Jobs, Departments & Offices",
    "description": "Unofficial Greenhouse Job Board API in one Apify actor. Scrape jobs, full descriptions, departments and offices from any company on Greenhouse — Airbnb, Stripe, Anthropic, Mistral AI, Doctolib, Datadog, Notion. Pure HTTP, no auth, parallel batch. For HR tech, ATS, lead gen and AI agents.",
    "version": "1.0",
    "x-build-id": "ey8CBfQvdMUlFZMUc"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/logiover~greenhouse-job-board-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-logiover-greenhouse-job-board-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/logiover~greenhouse-job-board-scraper/runs": {
      "post": {
        "operationId": "runs-sync-logiover-greenhouse-job-board-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/logiover~greenhouse-job-board-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-logiover-greenhouse-job-board-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": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "jobs",
              "jobDetail",
              "board",
              "departments",
              "offices"
            ],
            "type": "string",
            "description": "Which endpoint family to call. `jobs` returns the full job list for each board (most common). `jobDetail` returns rich detail (questions, pay ranges) for specific job IDs. `board` returns the board profile/description. `departments` and `offices` return the company hierarchy.",
            "default": "jobs"
          },
          "boardTokens": {
            "title": "Board tokens",
            "uniqueItems": true,
            "type": "array",
            "description": "Greenhouse board tokens — the slug after boards.greenhouse.io/. For example for https://boards.greenhouse.io/airbnb the token is `airbnb`. Add as many as you want; the actor fetches them in parallel. Examples: airbnb, stripe, anthropic, mistralai, datadog, doctolib, cohere, glovo, ramp, retool.",
            "items": {
              "type": "string"
            }
          },
          "jobIds": {
            "title": "Job IDs (jobDetail mode only)",
            "type": "array",
            "description": "Numeric job IDs to fetch in `jobDetail` mode. Only the FIRST board token is used in this mode — IDs are scoped to a single board.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "fullContent": {
            "title": "Include full description + departments + offices",
            "type": "boolean",
            "description": "When ON, jobs mode appends `?content=true` so each job includes the full HTML description, department list and office list. Significantly richer output. When OFF, only the lightweight summary is returned (faster, smaller). Default: ON.",
            "default": true
          },
          "includeQuestions": {
            "title": "Include application questions (jobDetail mode)",
            "type": "boolean",
            "description": "When ON in `jobDetail` mode, appends `?questions=true` so the response includes the application form questions, EEOC compliance fields, location questions and demographic questions defined for the job.",
            "default": false
          },
          "includePayRanges": {
            "title": "Include pay ranges (jobDetail mode)",
            "type": "boolean",
            "description": "When ON in `jobDetail` mode, appends `?pay_input_ranges=true` so the response includes the pay ranges configured for the post. Only populated if the employer publishes salary info.",
            "default": false
          },
          "decodeContent": {
            "title": "Decode HTML entities in content",
            "type": "boolean",
            "description": "Greenhouse stores descriptions as HTML-entity-encoded text (`&lt;p&gt;…` rather than `<p>…`). With this ON (default), entities are decoded once so the `content` field contains clean HTML you can render directly. Turn OFF to keep the raw server response untouched.",
            "default": true
          },
          "stripHtml": {
            "title": "Also produce plain-text content",
            "type": "boolean",
            "description": "When ON, adds a `contentText` field with HTML tags stripped and whitespace collapsed. Useful for keyword search, AI embeddings, CSV exports.",
            "default": false
          },
          "filterDepartments": {
            "title": "Filter by department names",
            "type": "array",
            "description": "Substring match (case-insensitive) against department names. Example: `Engineering`, `Product`. Empty = no filter. Filtering happens client-side because the Greenhouse public API does not accept query filters.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "filterOffices": {
            "title": "Filter by office names",
            "type": "array",
            "description": "Substring match (case-insensitive) against office names. Example: `Paris`, `San Francisco`, `Remote`. Empty = no filter.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "filterLocations": {
            "title": "Filter by job location",
            "type": "array",
            "description": "Substring match (case-insensitive) against the job's `location.name`. Each job has a single location string — this filters on that text. Example: `Remote - USA`, `London`. Empty = no filter.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "filterTitleKeywords": {
            "title": "Filter by title keywords",
            "type": "array",
            "description": "Substring match (case-insensitive) against job titles. Example: `senior`, `manager`, `python`. Any match keeps the job. Empty = no filter.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "filterLanguages": {
            "title": "Filter by language",
            "type": "array",
            "description": "Match the job's `language` field (ISO 639-1 codes like `en`, `fr`, `de`). Useful when scraping multinational boards. Empty = no filter.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "maxResultsPerBoard": {
            "title": "Max results per board",
            "minimum": 0,
            "maximum": 10000,
            "type": "integer",
            "description": "Cap the number of jobs saved per board token. The full list is still fetched (Greenhouse doesn't paginate) but only the first N items are pushed to the dataset. Set 0 for no cap."
          },
          "concurrency": {
            "title": "Parallel fetches",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many board tokens to fetch in parallel. The Greenhouse API has no documented rate limit, but 5–10 is a polite default. Range 1–20.",
            "default": 5
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}