{
  "openapi": "3.0.1",
  "info": {
    "title": "Greenhouse Job Scraper",
    "description": "💰$1/1K result💰 Extract live Greenhouse job postings from company career pages. Get clean, structured job data with titles, locations, departments, requirements, benefits, compensation, application questions, and direct posting links.",
    "version": "0.1",
    "x-build-id": "NaOWfeQUt2AXhSHAQ"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/vortex_data~greenhouse/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-vortex_data-greenhouse",
        "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/vortex_data~greenhouse/runs": {
      "post": {
        "operationId": "runs-sync-vortex_data-greenhouse",
        "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/vortex_data~greenhouse/run-sync": {
      "post": {
        "operationId": "run-sync-vortex_data-greenhouse",
        "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": [
          "urls"
        ],
        "properties": {
          "urls": {
            "title": "Greenhouse Job Board URLs",
            "minItems": 1,
            "uniqueItems": true,
            "type": "array",
            "description": "One or more public Greenhouse board URLs, for example https://job-boards.greenhouse.io/webflow or https://boards.greenhouse.io/webflow.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "title": "Greenhouse Job Board URL",
                  "type": "string",
                  "description": "A public Greenhouse job board URL."
                }
              },
              "additionalProperties": false
            }
          },
          "includeQuestions": {
            "title": "Include Application Questions",
            "type": "boolean",
            "description": "Include application questions from Greenhouse job detail pages.",
            "default": true
          },
          "includePayTransparency": {
            "title": "Include Pay Transparency",
            "type": "boolean",
            "description": "Include Greenhouse pay transparency fields when they are available.",
            "default": true
          },
          "descriptionType": {
            "title": "Description Format",
            "enum": [
              "both",
              "text",
              "html"
            ],
            "type": "string",
            "description": "Choose whether output items keep text descriptions, HTML descriptions, or both.",
            "default": "both"
          },
          "titleSearch": {
            "title": "Title Search",
            "type": "array",
            "description": "Keep jobs whose title contains at least one of these terms. Use :* for prefix matching, for example Soft:*.",
            "items": {
              "type": "string"
            }
          },
          "titleExclusionSearch": {
            "title": "Title Exclusions",
            "type": "array",
            "description": "Skip jobs whose title contains any of these terms.",
            "items": {
              "type": "string"
            }
          },
          "locationSearch": {
            "title": "Location Search",
            "type": "array",
            "description": "Keep jobs whose normalized location text contains at least one of these terms.",
            "items": {
              "type": "string"
            }
          },
          "locationExclusionSearch": {
            "title": "Location Exclusions",
            "type": "array",
            "description": "Skip jobs whose normalized location text contains any of these terms.",
            "items": {
              "type": "string"
            }
          },
          "departmentSearch": {
            "title": "Department Search",
            "type": "array",
            "description": "Keep jobs whose primary department contains at least one of these terms.",
            "items": {
              "type": "string"
            }
          },
          "departmentExclusionSearch": {
            "title": "Department Exclusions",
            "type": "array",
            "description": "Skip jobs whose primary department contains any of these terms.",
            "items": {
              "type": "string"
            }
          },
          "organizationSearch": {
            "title": "Organization Search",
            "type": "array",
            "description": "Keep jobs whose derived organization name contains at least one of these terms.",
            "items": {
              "type": "string"
            }
          },
          "organizationExclusionSearch": {
            "title": "Organization Exclusions",
            "type": "array",
            "description": "Skip jobs whose derived organization name contains any of these terms.",
            "items": {
              "type": "string"
            }
          },
          "descriptionSearch": {
            "title": "Description Search",
            "type": "array",
            "description": "Keep jobs whose plain-text description contains at least one of these terms.",
            "items": {
              "type": "string"
            }
          },
          "descriptionExclusionSearch": {
            "title": "Description Exclusions",
            "type": "array",
            "description": "Skip jobs whose plain-text description contains any of these terms.",
            "items": {
              "type": "string"
            }
          },
          "remoteOnly": {
            "title": "Remote Only",
            "type": "boolean",
            "description": "Keep only jobs inferred as remote from the location, title, or description.",
            "default": false
          },
          "workplaceTypes": {
            "title": "Workplace Types",
            "type": "array",
            "description": "Keep jobs with one of these derived workplace types.",
            "items": {
              "type": "string",
              "enum": [
                "remote",
                "hybrid",
                "onsite"
              ]
            }
          },
          "employmentTypes": {
            "title": "Employment Types",
            "type": "array",
            "description": "Keep jobs with one of these normalized employment types.",
            "items": {
              "type": "string",
              "enum": [
                "full_time",
                "part_time",
                "contract",
                "internship",
                "freelance",
                "temporary"
              ]
            }
          },
          "experienceLevels": {
            "title": "Experience Levels",
            "type": "array",
            "description": "Keep jobs with one of these derived seniority levels.",
            "items": {
              "type": "string",
              "enum": [
                "intern",
                "entry",
                "mid",
                "senior",
                "lead",
                "executive"
              ]
            }
          },
          "postedAfter": {
            "title": "Posted After",
            "type": "string",
            "description": "Keep jobs posted or updated after this date. Accepts ISO 8601 or relative values such as yesterday, 7 days ago, or last week."
          },
          "maxItems": {
            "title": "Max Jobs",
            "minimum": 0,
            "type": "integer",
            "description": "Maximum number of matching jobs to save. Use 0 to save all matching jobs.",
            "default": 0
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}