# Web developer jobs from 10 boards — example

**Use case:** 

Queries ten web-dev job sources in one run and returns a merged, deduplicated batch of vacancies as clean structured JSON.

## Input

```json
{
  "sources": [
    "linkedin",
    "remote_boards",
    "builtin",
    "justjoinit",
    "nofluffjobs",
    "hackernews",
    "ycombinator_was",
    "wttj",
    "infojobs",
    "tecnoempleo"
  ],
  "postedWithinDays": 0,
  "onlyNewSinceLastRun": false,
  "maxItemsPerSource": 2,
  "maxItems": 6,
  "cacheTtlSeconds": 1800,
  "concurrency": 10,
  "runTimeoutSecs": 300
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "isRemote": {
    "label": "Is remote",
    "format": "boolean"
  },
  "seniority": {
    "label": "Seniority",
    "format": "string"
  },
  "salary": {
    "label": "Salary text",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted date",
    "format": "string"
  },
  "url": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Web Developer Jobs Scraper — LinkedIn, HN, RemoteOK + 7 More](https://apify.com/nomad-agent/web-dev-bundle) with a specific input configuration. Visit the [Actor detail page](https://apify.com/nomad-agent/web-dev-bundle) to learn more, explore other use cases, and run it yourself.