# Software Engineer Jobs Scraper

**Use case:** 

Search multiple job boards for London software engineer roles and export deduped job records in one dataset.

## Input

```json
{
  "keyword": "software engineer",
  "location": "London",
  "sources": [
    "reed",
    "arbeitnow"
  ],
  "maxItems": 50,
  "dedupeBy": "titleCompanyLocation",
  "includeDescription": false
}
```

## Output

```json
{
  "source": {
    "label": "Source",
    "format": "text"
  },
  "jobId": {
    "label": "Job ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "remoteType": {
    "label": "Remote type",
    "format": "text"
  },
  "salaryText": {
    "label": "Salary text",
    "format": "text"
  },
  "salaryMin": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary max",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted at",
    "format": "date"
  },
  "expiresAt": {
    "label": "Expires at",
    "format": "date"
  },
  "jobUrl": {
    "label": "Job URL",
    "format": "link"
  },
  "applyUrl": {
    "label": "Apply URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "employmentType": {
    "label": "Employment type",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "dedupeKey": {
    "label": "Dedupe key",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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