{
  "openapi": "3.0.1",
  "info": {
    "title": "🌱 Greenhouse Jobs API",
    "description": "🌱 Greenhouse Jobs API streamlines job data access from Greenhouse ATS. Fetch listings, details, and metadata fast for recruitment, analytics, and B2B automation. 🚀 Build smarter hiring workflows with clean, reliable endpoints.",
    "version": "0.1",
    "x-build-id": "kAwl7qLHdU0OoJhGR"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/simpleapi~greenhouse-jobs-api/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-simpleapi-greenhouse-jobs-api",
        "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/simpleapi~greenhouse-jobs-api/runs": {
      "post": {
        "operationId": "runs-sync-simpleapi-greenhouse-jobs-api",
        "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/simpleapi~greenhouse-jobs-api/run-sync": {
      "post": {
        "operationId": "run-sync-simpleapi-greenhouse-jobs-api",
        "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 Board URLs",
            "type": "array",
            "description": "List one or more Greenhouse job-board URLs (e.g. https://job-boards.greenhouse.io/datadog or https://boards.greenhouse.io/stripe). Plain board tokens (e.g. `datadog`) are also accepted. Bulk input supported.",
            "items": {
              "type": "string"
            }
          },
          "limit": {
            "title": "📊 Maximum Jobs per Run",
            "minimum": 20,
            "maximum": 50000,
            "type": "integer",
            "description": "Maximum number of jobs to return per run. Minimum 200, maximum 5,000. 💡 Set memory to 1GB+ for runs above 2,000 jobs.",
            "default": 20
          },
          "includeCompanyDetails": {
            "title": "🏢 Include Company Data Fields",
            "type": "boolean",
            "description": "Include the company-data columns (LinkedIn / Crunchbase / logo). These are vendor-side AI enrichments with no public Greenhouse source — when enabled the columns are present but emitted as null.",
            "default": true
          },
          "titleSearch": {
            "title": "🔍 Title Search",
            "type": "array",
            "description": "Job titles to keep. Use `:*` for prefix matching (e.g. 'Soft:*' matches 'Software', 'Softball'). Leave empty to keep all titles.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "titleExclusionSearch": {
            "title": "🚫 Title Exclusion Search",
            "type": "array",
            "description": "Job titles to drop. Use `:*` for prefix matching.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "locationSearch": {
            "title": "📍 Location Search",
            "type": "array",
            "description": "Locations to keep (phrase match against the job's location text). E.g. 'Barcelona', 'United Kingdom'. Use `:*` for prefix matching.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "locationExclusionSearch": {
            "title": "🗺️ Location Exclusion Search",
            "type": "array",
            "description": "Locations to drop. Use `:*` for prefix matching.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "descriptionSearch": {
            "title": "📝 Description Search (includes title)",
            "type": "array",
            "description": "⚠️ Intensive. Terms searched in title + description. Be specific and combine with a Title Search. Use `:*` for prefix matching.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "descriptionExclusionSearch": {
            "title": "🧹 Description Exclusion Search (includes title)",
            "type": "array",
            "description": "⚠️ Intensive. Terms excluded from title + description. Use `:*` for prefix matching.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "organizationSearch": {
            "title": "🏷️ Organization Search",
            "type": "array",
            "description": "Organization names to keep. Use `:*` for prefix matching.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "organizationExclusionSearch": {
            "title": "⛔ Organization Exclusion Search",
            "type": "array",
            "description": "Organization names to drop. Use `:*` for prefix matching.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "domainFilter": {
            "title": "🌐 Domain Filter",
            "type": "array",
            "description": "Company domains to keep — exact match (e.g. 'n26.com').",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "domainExclusionFilter": {
            "title": "🚧 Domain Exclusion Filter",
            "type": "array",
            "description": "Company domains to drop — exact match.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "descriptionType": {
            "title": "🧾 Description Type",
            "enum": [
              "text",
              "html"
            ],
            "type": "string",
            "description": "Format of the job description in the output.",
            "default": "text"
          },
          "aiEmploymentTypeFilter": {
            "title": "🧑‍💼 AI Employment Type",
            "type": "array",
            "description": "Filter by employment type. ℹ️ Vendor AI enrichment — a direct Greenhouse scrape has no AI source, so this filter is accepted but not applied.",
            "items": {
              "type": "string",
              "enum": [
                "FULL_TIME",
                "PART_TIME",
                "CONTRACTOR",
                "TEMPORARY",
                "INTERN",
                "VOLUNTEER",
                "PER_DIEM",
                "OTHER"
              ]
            },
            "default": []
          },
          "aiWorkArrangementFilter": {
            "title": "🏠 AI Work Arrangement",
            "type": "array",
            "description": "Filter by work arrangement. Remote OK = remote with an office available. Remote Solely = remote, no office. ℹ️ Vendor AI enrichment — accepted but not applied on a direct scrape.",
            "items": {
              "type": "string",
              "enum": [
                "On-site",
                "Hybrid",
                "Remote OK",
                "Remote Solely"
              ]
            },
            "default": []
          },
          "hasSalary": {
            "title": "💰 Only Jobs With Salary",
            "type": "boolean",
            "description": "Keep only jobs that publish a pay range (forces a per-job detail fetch).",
            "default": false
          },
          "aiExperienceLevelFilter": {
            "title": "📈 AI Experience Level",
            "type": "array",
            "description": "Filter by years of experience. ℹ️ Vendor AI enrichment — accepted but not applied on a direct scrape.",
            "items": {
              "type": "string",
              "enum": [
                "0-2",
                "2-5",
                "5-10",
                "10+"
              ]
            },
            "default": []
          },
          "aiVisaSponsorshipFilter": {
            "title": "🛂 AI Visa Sponsorship",
            "type": "boolean",
            "description": "Keep only jobs offering visa sponsorship. ℹ️ Vendor AI enrichment — accepted but not applied on a direct scrape.",
            "default": false
          },
          "aiTaxonomiesFilter": {
            "title": "🗂️ AI Taxonomies Filter",
            "type": "array",
            "description": "Filter by AI taxonomies. ℹ️ Vendor AI enrichment — accepted but not applied on a direct scrape.",
            "items": {
              "type": "string",
              "enum": [
                "Technology",
                "Healthcare",
                "Management & Leadership",
                "Finance & Accounting",
                "Human Resources",
                "Sales",
                "Marketing",
                "Customer Service & Support",
                "Education",
                "Legal",
                "Engineering",
                "Science & Research",
                "Trades",
                "Construction",
                "Manufacturing",
                "Logistics",
                "Creative & Media",
                "Hospitality",
                "Environmental & Sustainability",
                "Retail",
                "Data & Analytics",
                "Software",
                "Energy",
                "Agriculture",
                "Social Services",
                "Administrative",
                "Government & Public Sector",
                "Art & Design",
                "Food & Beverage",
                "Transportation",
                "Consulting",
                "Sports & Recreation",
                "Security & Safety"
              ]
            },
            "default": []
          },
          "aiTaxonomiesPrimaryFilter": {
            "title": "📌 AI Taxonomies Primary Filter",
            "type": "array",
            "description": "Filter by primary AI taxonomy. ℹ️ Vendor AI enrichment — accepted but not applied on a direct scrape.",
            "items": {
              "type": "string",
              "enum": [
                "Technology",
                "Healthcare",
                "Management & Leadership",
                "Finance & Accounting",
                "Human Resources",
                "Sales",
                "Marketing",
                "Customer Service & Support",
                "Education",
                "Legal",
                "Engineering",
                "Science & Research",
                "Trades",
                "Construction",
                "Manufacturing",
                "Logistics",
                "Creative & Media",
                "Hospitality",
                "Environmental & Sustainability",
                "Retail",
                "Data & Analytics",
                "Software",
                "Energy",
                "Agriculture",
                "Social Services",
                "Administrative",
                "Government & Public Sector",
                "Art & Design",
                "Food & Beverage",
                "Transportation",
                "Consulting",
                "Sports & Recreation",
                "Security & Safety"
              ]
            },
            "default": []
          },
          "aiTaxonomiesExclusionFilter": {
            "title": "🧨 AI Taxonomies Exclusion Filter (warning: very broad)",
            "type": "array",
            "description": "Exclude jobs by AI taxonomies. ⚠️ Very broad — may drop relevant jobs. ℹ️ Vendor AI enrichment — accepted but not applied on a direct scrape.",
            "items": {
              "type": "string",
              "enum": [
                "Technology",
                "Healthcare",
                "Management & Leadership",
                "Finance & Accounting",
                "Human Resources",
                "Sales",
                "Marketing",
                "Customer Service & Support",
                "Education",
                "Legal",
                "Engineering",
                "Science & Research",
                "Trades",
                "Construction",
                "Manufacturing",
                "Logistics",
                "Creative & Media",
                "Hospitality",
                "Environmental & Sustainability",
                "Retail",
                "Data & Analytics",
                "Software",
                "Energy",
                "Agriculture",
                "Social Services",
                "Administrative",
                "Government & Public Sector",
                "Art & Design",
                "Food & Beverage",
                "Transportation",
                "Consulting",
                "Sports & Recreation",
                "Security & Safety"
              ]
            },
            "default": []
          },
          "removeAgency": {
            "title": "🚮 Remove Agency Jobs",
            "type": "boolean",
            "description": "Filter out recruitment agencies. ℹ️ Vendor AI enrichment — accepted but not applied on a direct scrape.",
            "default": false
          },
          "liIndustryFilter": {
            "title": "🏭 LinkedIn Industries",
            "type": "array",
            "description": "Filter by LinkedIn industries. ℹ️ Vendor LinkedIn enrichment — accepted but not applied on a direct scrape.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "liOrganizationEmployeesLte": {
            "title": "🔽 LinkedIn Max Company Size",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only companies with at most this many LinkedIn employees. ℹ️ Vendor LinkedIn enrichment — accepted but not applied on a direct scrape."
          },
          "liOrganizationEmployeesGte": {
            "title": "🔼 LinkedIn Min Company Size",
            "minimum": 0,
            "type": "integer",
            "description": "Keep only companies with at least this many LinkedIn employees. ℹ️ Vendor LinkedIn enrichment — accepted but not applied on a direct scrape."
          },
          "includeLinkedIn": {
            "title": "🔗 Include LinkedIn Company Data Fields (deprecated, use Include Company Data Fields)",
            "type": "boolean",
            "description": "Deprecated alias of 'Include Company Data Fields'. Set to false to drop the company-data columns.",
            "default": true
          },
          "remoteOnly": {
            "title": "🌐 Remote Only (deprecated, use AI Work Arrangement)",
            "type": "boolean",
            "description": "Deprecated. Legacy toggle for remote-only jobs; superseded by AI Work Arrangement. ℹ️ Accepted but not applied on a direct scrape.",
            "default": false
          },
          "aiHasSalary": {
            "title": "💵 AI Has Salary (deprecated, use Only Jobs With Salary)",
            "type": "boolean",
            "description": "Deprecated alias of 'Only Jobs With Salary'. When true, only jobs with a published pay range are kept.",
            "default": false
          },
          "fetchSalaryData": {
            "title": "💵 Fetch Salary Data",
            "type": "boolean",
            "description": "Fetch published pay ranges even when 'Only Jobs With Salary' is off (1 extra request per job; fills salary_raw + ai_salary_* where the employer publishes a range).",
            "default": true
          },
          "geocodeLocations": {
            "title": "🌍 Geocode Locations",
            "type": "boolean",
            "description": "Resolve job locations via OpenStreetMap/Nominatim to fill the *_derived fields (cities / regions / countries / locations / timezones / lat / lng). Rate-limited to 1 request/second; results are cached for fast repeat runs.",
            "default": true
          },
          "proxyConfiguration": {
            "title": "🛡️ Proxy Configuration",
            "type": "object",
            "description": "Proxy settings. The actor starts with NO proxy (direct). If Greenhouse blocks the request, it automatically falls back to a datacenter proxy, then to a residential proxy (and sticks with residential for the rest of the run).",
            "default": {
              "useApifyProxy": 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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}