# Monitor Remote Engineering Job Openings

**Use case:** 

Monitor remote engineering roles on public Greenhouse boards. Replace the sample board tokens and filters. Monitoring state is shared by board within your account: unseen boards create a baseline; later checks return matching new, updated, closed or reopened jobs plus company summaries. Salary appears when published. This Task does not send notifications.

## Input

```json
{
  "boards": [
    "stripe",
    "figma"
  ],
  "mode": "monitor",
  "outputMode": "changesOnly",
  "includeDescription": false,
  "includePayTransparency": true,
  "filters": {
    "titleIncludes": [
      "engineer",
      "developer"
    ],
    "titleExcludes": [
      "intern",
      "manager"
    ],
    "remoteTypes": [
      "remote"
    ]
  },
  "boardAliases": {}
}
```

## Output

```json
{
  "external_id": {
    "label": "External ID",
    "format": "string"
  },
  "company_name": {
    "label": "Company name",
    "format": "string"
  },
  "job_id": {
    "label": "Job post ID",
    "format": "integer"
  },
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "location": {
    "label": "Primary location",
    "format": "string"
  },
  "change_type": {
    "label": "Change type",
    "format": "string"
  },
  "changed_fields": {
    "label": "Changed fields",
    "format": "array"
  },
  "previous": {
    "label": "Previous values",
    "format": "object"
  },
  "apply_url": {
    "label": "Apply URL",
    "format": "string"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  },
  "scraped_at": {
    "label": "Observed at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Greenhouse Jobs Scraper API & Hiring Monitor](https://apify.com/automa-flow/greenhouse-jobs-hiring-monitor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automa-flow/greenhouse-jobs-hiring-monitor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/automa-flow/greenhouse-jobs-hiring-monitor.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
