{
  "openapi": "3.0.1",
  "info": {
    "title": "Greenhouse Jobs Scraper & API — 200,000+ Jobs, No Row Cap",
    "description": "Get every open job from 7,500+ companies hiring on Greenhouse, like Airbnb, Stripe and SpaceX, in one run, with no company list and no row cap. Only live listings: closed jobs are removed at every refresh. Filter by title, location, salary, remote work, seniority, benefits and visa sponsorship.",
    "version": "0.1",
    "x-build-id": "9Lt9QGbgdkYaxq7Ep"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/hiraware~greenhouse-jobs/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-hiraware-greenhouse-jobs",
        "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/hiraware~greenhouse-jobs/runs": {
      "post": {
        "operationId": "runs-sync-hiraware-greenhouse-jobs",
        "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/hiraware~greenhouse-jobs/run-sync": {
      "post": {
        "operationId": "run-sync-hiraware-greenhouse-jobs",
        "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": {
          "query": {
            "title": "Job title contains",
            "type": "string",
            "description": "Words that must appear in the job title, matched as whole words, e.g. \"data engineer\". Use at least 3 letters or digits. For short names like C++, Go or AI, use Technologies below."
          },
          "titleExclude": {
            "title": "Exclude titles containing",
            "type": "array",
            "description": "Skip jobs whose title contains any of these words, e.g. senior, staff, intern.",
            "items": {
              "type": "string"
            }
          },
          "tech": {
            "title": "Technologies",
            "type": "array",
            "description": "Jobs that mention any of these technologies, e.g. Python, Kubernetes, C++, Go.",
            "items": {
              "type": "string"
            }
          },
          "companies": {
            "title": "Companies (Greenhouse board names)",
            "type": "array",
            "description": "Only these companies. Use the name from their Greenhouse link: boards.greenhouse.io/stripe is \"stripe\".",
            "items": {
              "type": "string"
            }
          },
          "countries": {
            "title": "Countries",
            "type": "array",
            "description": "2-letter country codes, e.g. US, GB, DE. A job listed in several countries matches any of them.",
            "items": {
              "type": "string"
            }
          },
          "cities": {
            "title": "Cities",
            "type": "array",
            "description": "City names, e.g. London, New York. Not case-sensitive.",
            "items": {
              "type": "string"
            }
          },
          "regions": {
            "title": "States / regions",
            "type": "array",
            "description": "State or region names, e.g. California, Texas, Ontario.",
            "items": {
              "type": "string"
            }
          },
          "remoteType": {
            "title": "Work arrangement",
            "type": "array",
            "description": "Only included when the posting says so. Jobs that don't mention it won't match.",
            "items": {
              "type": "string",
              "enum": [
                "remote",
                "hybrid",
                "onsite"
              ]
            }
          },
          "seniority": {
            "title": "Seniority",
            "type": "array",
            "description": "Taken from the job title, or the employer's own level where they set one. Jobs that don't say won't match.",
            "items": {
              "type": "string",
              "enum": [
                "intern",
                "junior",
                "mid",
                "senior",
                "lead",
                "staff",
                "principal",
                "head",
                "vp",
                "c-level"
              ]
            }
          },
          "employmentType": {
            "title": "Employment type",
            "type": "array",
            "description": "Full-time, part-time and so on, as the employer states it. Most employers don't, so tick the box below to include our best guess too.",
            "items": {
              "type": "string",
              "enum": [
                "full-time",
                "part-time",
                "contract",
                "freelance"
              ]
            }
          },
          "includeInferredEmploymentType": {
            "title": "Also match inferred employment type",
            "type": "boolean",
            "description": "Also match jobs where we worked it out, e.g. a yearly salary usually means full-time. Our guess is in its own field (employment_type_inferred), never mixed with what the employer said.",
            "default": false
          },
          "jobFunction": {
            "title": "Job function",
            "type": "array",
            "description": "The part of the business, e.g. engineering or sales, taken from the employer's department first and the title second.",
            "items": {
              "type": "string",
              "enum": [
                "engineering",
                "design",
                "product",
                "data",
                "sales",
                "marketing",
                "finance",
                "legal",
                "people",
                "operations",
                "support",
                "other"
              ]
            }
          },
          "yearsMax": {
            "title": "Required experience at most (years)",
            "minimum": 0,
            "maximum": 40,
            "type": "integer",
            "description": "Your experience in years. Returns jobs asking for this much or less."
          },
          "minSalaryUsd": {
            "title": "Minimum pay (USD per year)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum yearly pay in US dollars. Other currencies and hourly rates are converted (hourly × 2,080 hours), so treat it as an estimate. Jobs without a published salary are left out when this is set."
          },
          "hasSalary": {
            "title": "Only jobs with a published salary",
            "type": "boolean",
            "description": "Only jobs where the employer published a salary or pay range.",
            "default": false
          },
          "benefitTags": {
            "title": "Benefits (must offer ALL)",
            "type": "array",
            "description": "Only jobs whose posting mentions ALL of the benefits you pick.",
            "items": {
              "type": "string",
              "enum": [
                "health_insurance",
                "retirement",
                "equity",
                "paid_time_off",
                "unlimited_pto",
                "parental_leave",
                "learning_budget",
                "remote_stipend",
                "wellness",
                "bonus",
                "relocation"
              ]
            }
          },
          "visaSponsorship": {
            "title": "Only jobs that state visa sponsorship",
            "type": "boolean",
            "description": "Only jobs that say they offer visa sponsorship.",
            "default": false
          },
          "securityClearance": {
            "title": "Only jobs requiring security clearance",
            "type": "boolean",
            "description": "Only jobs that mention a security clearance.",
            "default": false
          },
          "aiScreening": {
            "title": "AI screening disclosure",
            "enum": [
              "any",
              "disclosed",
              "not_disclosed"
            ],
            "type": "string",
            "description": "Whether the employer says it uses AI to screen applications.",
            "default": "any"
          },
          "postedAfter": {
            "title": "Posted on or after",
            "type": "string",
            "description": "Only jobs posted on or after this date. Leave it empty to include every open job, however old."
          },
          "language": {
            "title": "Posting language",
            "type": "string",
            "description": "2-letter language code of the posting, e.g. en."
          },
          "includeDescription": {
            "title": "Include full description",
            "type": "boolean",
            "description": "The full job description, included at no extra cost.",
            "default": true
          },
          "descriptionFormat": {
            "title": "Description format",
            "enum": [
              "text",
              "html",
              "both"
            ],
            "type": "string",
            "description": "Readable text, clean HTML that's safe to show on your site, or both.",
            "default": "text"
          },
          "includeHiringContact": {
            "title": "Include hiring contact (US jobs only)",
            "type": "boolean",
            "description": "Off by default. For US jobs only: the name and email the employer put in the posting. It's read from the description, so it may contain mistakes.",
            "default": false
          },
          "maxResults": {
            "title": "Maximum jobs",
            "minimum": 1,
            "type": "integer",
            "description": "The most jobs to return. There's no platform cap, so raise it as far as you like. Your spend limit for the run is always respected.",
            "default": 5000
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}