# Monitor jobs on Greenhouse, Lever and Ashby career pages

**Use case:** 

Give a list of company domains and get every open job on their career sites (Greenhouse, Lever, Ashby and more) with title, location, department and full description. Incremental mode is on, so a repeat run returns only jobs that are new or changed since last time and never charges twice for the same posting.

## Input

```json
{
  "companyDomains": [
    "ramp.com",
    "vercel.com",
    "linear.app"
  ],
  "incremental": true,
  "includeDescription": true,
  "maxJobsPerCompany": 0,
  "directSources": [],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "title": {
    "label": "Job title"
  },
  "companyName": {
    "label": "Company"
  },
  "companySlug": {
    "label": "Company slug"
  },
  "sourceId": {
    "label": "Source"
  },
  "locationRaw": {
    "label": "Location"
  },
  "locations": {
    "label": "Locations (parsed)"
  },
  "workplaceType": {
    "label": "Workplace"
  },
  "employmentType": {
    "label": "Employment type"
  },
  "department": {
    "label": "Department"
  },
  "team": {
    "label": "Team"
  },
  "seniority": {
    "label": "Seniority"
  },
  "compensation": {
    "label": "Compensation"
  },
  "publishedAt": {
    "label": "Published"
  },
  "descriptionText": {
    "label": "Description"
  },
  "applyUrl": {
    "label": "Apply URL"
  },
  "jobUrl": {
    "label": "Job URL"
  },
  "jobId": {
    "label": "Job ID"
  }
}
```

## About this Actor

This example demonstrates how to use [Career Site Job Scraper - Greenhouse, Lever, Ashby & More](https://apify.com/garnet_puppet/career-site-job-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/garnet_puppet/career-site-job-scraper.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/garnet_puppet/career-site-job-scraper.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`).
