# Export jobs from a Greenhouse company career page

**Use case:** 

Export current Airbnb Greenhouse jobs as JSON: titles, locations, full descriptions and apply links. No ATS key. $0.001/job ($1/1,000) plus $0.00005 start at default memory. Example caps: 5 jobs and $0.02/run. Free board/error details use the separate status output.

## Input

```json
{
  "boards": [
    "https://boards.greenhouse.io/airbnb"
  ],
  "maxJobsPerBoard": 5,
  "descriptionFormat": "text",
  "remoteOnly": false,
  "maxTotalJobs": 5,
  "includeBoardSummary": true
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "ats": {
    "label": "ATS",
    "format": "string"
  },
  "board": {
    "label": "Board",
    "format": "string"
  },
  "region": {
    "label": "Region",
    "format": "string"
  },
  "boardUrl": {
    "label": "Board url",
    "format": "string"
  },
  "jobId": {
    "label": "Job id",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "secondaryLocations": {
    "label": "Secondary locations",
    "format": "array"
  },
  "department": {
    "label": "Department",
    "format": "string"
  },
  "team": {
    "label": "Team",
    "format": "string"
  },
  "employmentType": {
    "label": "Employment type",
    "format": "string"
  },
  "workplaceType": {
    "label": "Workplace type",
    "format": "string"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "salary": {
    "label": "Salary",
    "format": "object"
  },
  "salaryText": {
    "label": "Salary text",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted",
    "format": "string"
  },
  "updatedAt": {
    "label": "Updated at",
    "format": "string"
  },
  "url": {
    "label": "Job page",
    "format": "string"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "string"
  },
  "requisitionId": {
    "label": "Requisition id",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "descriptionTruncated": {
    "label": "Description truncated",
    "format": "boolean"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Greenhouse, Lever & Ashby Jobs Scraper](https://apify.com/kaz_kakyo/greenhouse-lever-ashby-jobs-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/kaz_kakyo/greenhouse-lever-ashby-jobs-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/kaz_kakyo/greenhouse-lever-ashby-jobs-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`).
