# JazzHR jobs scraper for a public career board

**Use case:** 

Extract titles, companies, locations, job descriptions, and apply URLs from a public JazzHR career board.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://advatixinc.applytojob.com/apply/jobs/"
    }
  ],
  "maxItems": 10,
  "includeDetails": true
}
```

## Output

```json
{
  "jobId": {
    "label": "Job ID"
  },
  "title": {
    "label": "Title"
  },
  "company": {
    "label": "Company"
  },
  "department": {
    "label": "Department"
  },
  "location": {
    "label": "Location"
  },
  "isRemote": {
    "label": "Remote",
    "format": "boolean"
  },
  "employmentType": {
    "label": "Employment type"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "link"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "link"
  },
  "sourceBoard": {
    "label": "Source board",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [JazzHR Jobs Scraper](https://apify.com/automation-lab/jazzhr-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/jazzhr-jobs-scraper) to learn more, explore other use cases, and run it yourself.