# Workable company jobs — example board fetch

**Use case:** 

Fetches live job postings from a company's Workable board via the public API — title, department and remote flag — as JSON.

## Input

```json
{
  "searchQuery": "python engineer",
  "searchWorkplace": "any",
  "companies": [
    "netguru"
  ],
  "titleExclude": [
    "intern",
    "staffing"
  ],
  "remoteOnly": false,
  "includeDescription": true,
  "maxItemsPerCompany": 5,
  "maxItems": 5,
  "onlyNewSinceLastRun": false,
  "aiEnrichment": false,
  "aiProvider": "anthropic",
  "aiModel": "claude-haiku-4-5-20251001",
  "mistralModel": "mistral-small-latest",
  "openaiModel": "gpt-4.1-mini",
  "concurrency": 8
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "workplace": {
    "label": "Workplace",
    "format": "string"
  },
  "employmentType": {
    "label": "Employment type",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Workable Jobs Scraper — Search 170K Jobs, No Slug](https://apify.com/nomad-agent/workable-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nomad-agent/workable-jobs-scraper) to learn more, explore other use cases, and run it yourself.