# Ashby Job Scraper: Scrape Startup Jobs

**Use case:** 

Scrape live roles from Ashby boards like OpenAI, Ramp, and Linear. Location and team filters, recency window, structured JSON output.

## Input

```json
{
  "urls": [
    {
      "url": "https://jobs.ashbyhq.com/openai",
      "teams": [
        "86a66e6f-8ddc-493d-b71f-2f6f6d2769a6"
      ],
      "maxJobs": 50
    },
    {
      "url": "https://jobs.ashbyhq.com/ramp",
      "maxJobs": 50,
      "daysBack": 14
    },
    {
      "url": "https://jobs.ashbyhq.com/linear",
      "maxJobs": 25
    }
  ]
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "department": {
    "label": "Department",
    "format": "text"
  },
  "locations": {
    "label": "Locations",
    "format": "array"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "compensationSummary": {
    "label": "Compensation",
    "format": "text"
  },
  "locationRequirements": {
    "label": "Eligible Countries",
    "format": "array"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "postingUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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