# Ashby company jobs — example board fetch

**Use case:** 

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

## Input

```json
{
  "companies": [
    "openai"
  ],
  "companyDomains": [],
  "titleExclude": [
    "intern",
    "staffing"
  ],
  "remoteOnly": false,
  "includeDescription": true,
  "outputProfile": "full",
  "maxItemsPerCompany": 5,
  "maxItems": 5,
  "onlyNewSinceLastRun": false,
  "aiEnrichment": false,
  "aiProvider": "anthropic",
  "aiModel": "claude-haiku-4-5-20251001",
  "mistralModel": "mistral-small-latest",
  "concurrency": 8
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "department": {
    "label": "Department",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "salary": {
    "label": "Salary (display text)",
    "format": "string"
  },
  "ats": {
    "label": "ATS",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Ashby Jobs Scraper — Company Job Boards API](https://apify.com/nomad-agent/ashby-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nomad-agent/ashby-jobs-scraper) to learn more, explore other use cases, and run it yourself.