{
  "openapi": "3.0.1",
  "info": {
    "title": "Greenhouse Jobs Scraper & Change Monitor",
    "description": "Export Greenhouse jobs with descriptions, locations and apply links. Track new jobs by company and filters, with stable keys for spreadsheets and automation.",
    "version": "0.2",
    "x-build-id": "eV9Sw25JLbxibku09"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/luminar~greenhouse-jobs-change-monitor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-luminar-greenhouse-jobs-change-monitor",
        "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/luminar~greenhouse-jobs-change-monitor/runs": {
      "post": {
        "operationId": "runs-sync-luminar-greenhouse-jobs-change-monitor",
        "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/luminar~greenhouse-jobs-change-monitor/run-sync": {
      "post": {
        "operationId": "run-sync-luminar-greenhouse-jobs-change-monitor",
        "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": {
          "workflow": {
            "title": "What do you want back?",
            "enum": [
              "collect",
              "details",
              "monitor"
            ],
            "type": "string",
            "description": "Collect exports current matching jobs. Details reads named job URLs. Monitor compares sequential runs of one watch list and delivers matching jobs plus new, updated, closed or left-filter changes.",
            "default": "collect"
          },
          "companyBoards": {
            "title": "Company board URLs or slugs",
            "minItems": 1,
            "maxItems": 50,
            "type": "array",
            "description": "For collect and monitor: paste Greenhouse board URLs or company slugs, such as airbnb. EU boards use an EU board URL or eu:slug. This is not a global company search.",
            "items": {
              "type": "string"
            },
            "default": [
              "airbnb"
            ]
          },
          "jobTargets": {
            "title": "Selected job URLs",
            "maxItems": 50,
            "type": "array",
            "description": "For details only: paste a Greenhouse job URL or board/job-id, such as airbnb/12345. Bare job IDs are not enough. Company board input is ignored in details mode.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "department": {
            "title": "Department contains",
            "type": "string",
            "description": "Case-insensitive text match against any department name. Applies to collect and monitor.",
            "default": ""
          },
          "location": {
            "title": "Location contains",
            "type": "string",
            "description": "Case-insensitive match against the source location label. No geocoding or radius inference.",
            "default": ""
          },
          "keywords": {
            "title": "Title or description keywords",
            "maxItems": 20,
            "type": "array",
            "description": "Return jobs matching any keyword as a literal substring of title or description. Up to 20 terms; combined with other filters.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "firstPublishedAfter": {
            "title": "First published on or after",
            "type": "string",
            "description": "Optional inclusive UTC date in YYYY-MM-DD form. Jobs with no published date are excluded when enabled.",
            "default": ""
          },
          "remoteOnly": {
            "title": "Location mentions remote",
            "type": "boolean",
            "description": "Keep only jobs whose location label explicitly contains remote. This does not infer a remote-work policy from job text.",
            "default": false
          },
          "includeContent": {
            "title": "Include full description",
            "type": "boolean",
            "description": "Deliver source description HTML and normalized plain text. Filtering may still inspect description when this is off.",
            "default": true
          },
          "includeQuestions": {
            "title": "Include application questions",
            "type": "boolean",
            "description": "Reads public question definitions, never applicant answers. May increase work; a job whose requested details cannot be verified is not charged.",
            "default": false
          },
          "includePayRanges": {
            "title": "Include published pay ranges",
            "type": "boolean",
            "description": "Return source-published pay transparency ranges when available. Never estimates salary. May increase work and can cause a bounded partial result.",
            "default": false
          },
          "stateNamespace": {
            "title": "Watch-list name",
            "type": "string",
            "description": "Monitor runs with the same targets, filters, limits and name share a baseline. Run sequentially. Changing those settings starts a separate comparison.",
            "default": "default"
          },
          "firstRunBehavior": {
            "title": "First monitor run",
            "enum": [
              "seed_only",
              "emit_current_as_new"
            ],
            "type": "string",
            "description": "Seed only delivers paid verified jobs and saves a baseline without change rows. Return current jobs as new also includes free NEW change rows.",
            "default": "seed_only"
          },
          "maxJobs": {
            "title": "Maximum jobs per run",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Hard limit across all company boards. Capped coverage cannot prove a missing job closed.",
            "default": 100
          },
          "maxJobsPerBoard": {
            "title": "Maximum jobs per board",
            "minimum": 1,
            "maximum": 10000,
            "type": "integer",
            "description": "Per-board matched-job limit, also bounded by the whole-run limit.",
            "default": 500
          },
          "maxRuntimeSecs": {
            "title": "Collection time budget (seconds)",
            "minimum": 30,
            "maximum": 60,
            "type": "integer",
            "description": "Stops new collection work with room to finish delivery. The platform timeout should be at least 60 seconds greater.",
            "default": 60
          },
          "maxBuyerChargeUsd": {
            "title": "Maximum buyer charge (USD)",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Refuses to start if the maximum possible charge for this input and saved baseline exceeds this amount. The Apify run spending limit is checked separately.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}