# Built In Jobs Page Scraper

**Use case:** 

Extract job listings from a Built In jobs URL with titles, companies, salary fields, locations, direct-apply flags, and source URLs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://builtin.com/jobs?search=product%20manager"
    }
  ],
  "keywords": "",
  "maxJobs": 75,
  "includeDescription": true,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "url": {
    "label": "Job URL",
    "format": "link"
  },
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "link"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "datePosted": {
    "label": "Date Posted",
    "format": "text"
  },
  "employmentType": {
    "label": "Type",
    "format": "text"
  },
  "salaryMin": {
    "label": "Salary Min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary Max",
    "format": "number"
  },
  "salaryCurrency": {
    "label": "Currency",
    "format": "text"
  },
  "salaryPeriod": {
    "label": "Period",
    "format": "text"
  },
  "directApply": {
    "label": "Direct Apply",
    "format": "boolean"
  },
  "industries": {
    "label": "Industries",
    "format": "text"
  }
}
```

## About this Actor

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