# SwissDevJobs Scraper — Swiss Tech Jobs With Salary Data (`studio-amba/swissdevjobs-scraper`) Actor

Scrape every open tech/IT job listing from swissdevjobs.ch, the Swiss board that mandates a salary range and tech stack on every posting. Get title, company, salary range, requirements, responsibilities and technologies. No login or cookies required.

- **URL**: https://apify.com/studio-amba/swissdevjobs-scraper.md
- **Developed by:** [Studio Amba](https://apify.com/studio-amba) (community)
- **Categories:** Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.20 / 1,000 result scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## SwissDevJobs Scraper

Extract every open tech/IT job listing from [swissdevjobs.ch](https://swissdevjobs.ch) as clean structured JSON. swissdevjobs.ch calls itself "the transparent IT job board" because every listing must disclose a salary range and a tech stack — no vague "competitive salary" postings. This actor collects that data in one run: job title, company, salary range, requirements, responsibilities, tech stack, and the direct listing URL.

No login. No cookies. No browser automation. The actor reads the same RSS feed swissdevjobs.ch itself publishes, so it is fast, cheap, and stable.

### What this actor does

swissdevjobs.ch's job pages are a client-side-rendered React app, and its search/category filters run entirely in the browser — there is no server-side search API to call directly. What the site does expose is a single RSS feed covering every currently open listing. This actor fetches that feed and turns each item into a structured record with:

- Job title and hiring company
- Salary range in CHF (minimum and maximum, as disclosed in the listing)
- Requirements — the bullet-point list of what the employer asks for
- Responsibilities — the bullet-point list of what the role involves
- Technologies — the clean tech-stack tags (e.g. React, Docker, Kubernetes)
- Direct link to the full job listing
- Publication date

Because the feed is a single list of all current openings (there is no working `tech=` or `category=` filter server-side — both are silently ignored), the actor doesn't need a search query. Leave the input empty and you get every open listing, up to your Max Results cap.

### Why use it

- **Salary benchmarking** — swissdevjobs.ch is one of the few boards where salary is mandatory, not optional. That makes it a genuinely useful source for Swiss tech salary ranges by role and tech stack, not the usual mix of disclosed/undisclosed postings.
- **Tech-stack market research** — see which technologies are in demand across the Swiss market right now, tagged consistently per listing.
- **Recruitment and sourcing** — build a live feed of open Swiss developer roles with salary attached, useful for competitive benchmarking when writing your own job ads.
- **Aggregators and job boards** — feed transparent-salary Swiss tech listings into your own product.

### How to scrape SwissDevJobs data

1. Open the actor and optionally set **Max Results** (how many listings to return; leave it at the default to get the full current feed).
2. Click **Start**. No search query, location, or proxy setup is needed — the feed already covers every open listing.
3. The actor fetches the swissdevjobs.ch RSS feed in a single request, parses every job entry, and writes one row per listing to the dataset.
4. Export the result as JSON, CSV or Excel.

Because this is a single feed request rather than a paginated crawl, a full run typically finishes in a few seconds.

### Input

| Field | Type | Description |
|-------|------|-------------|
| `maxResults` | integer | Maximum number of job listings to return. The feed currently carries roughly 230 open listings; set a lower number to sample, or leave the default to get everything. Default: `250`. |
| `proxyConfiguration` | object | Apify proxy settings. Default: residential. The RSS feed sits behind Cloudflare and returns a challenge page to shared datacenter IPs, so residential proxy is required rather than just recommended. |

#### Example input

```json
{
    "maxResults": 250,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": ["RESIDENTIAL"]
    }
}
```

An empty input (`{}`) also works (the actor applies the same residential proxy default) and returns the full current feed.

### Output

Each dataset item looks like this:

```json
{
    "jobTitle": "Full-Stack Entwickler PHP/Symfony/React",
    "company": "IWF Web Solutions AG",
    "salaryMin": 85000,
    "salaryMax": 115000,
    "currency": "CHF",
    "requirements": [
        "Aus- oder Weiterbildung in Informatik, Fachrichtung Applikationsentwicklung",
        "Sehr gute und aktuelle PHP- und Symfony-Kenntnisse"
    ],
    "responsibilities": [
        "Softwareentwicklung mit PHP/Symfony & React",
        "Aktive Teilnahme an den SCRUM Zeremonien"
    ],
    "technologies": [
        "PHP",
        "Symfony",
        "React",
        "Docker",
        "Kubernetes",
        "MySQL"
    ],
    "url": "https://swissdevjobs.ch/jobs/IWF-Web-Solutions-AG-Full-Stack-Entwickler-PHPSymfonyReact",
    "guid": "https://swissdevjobs.ch/jobs/IWF-Web-Solutions-AG-Full-Stack-Entwickler-PHPSymfonyReact",
    "publishedAt": "2026-08-04T22:00:00.000Z",
    "scrapedAt": "2026-08-05T19:54:40.127Z"
}
```

#### Output fields

| Field | Type | Description |
|-------|------|-------------|
| `jobTitle` | string | Title of the job listing |
| `company` | string | Name of the hiring company |
| `salaryMin` | number | null | Minimum annual salary in CHF, as disclosed by the listing |
| `salaryMax` | number | null | Maximum annual salary in CHF, as disclosed by the listing |
| `currency` | string | null | Always `CHF` when a salary range is present, else `null` |
| `requirements` | string\[] | Bullet-point list of role requirements |
| `responsibilities` | string\[] | Bullet-point list of role responsibilities |
| `technologies` | string\[] | Tech-stack tags for the role |
| `url` | string | Direct link to the job listing |
| `guid` | string | Unique feed identifier for the listing |
| `publishedAt` | string | ISO 8601 publication date |
| `scrapedAt` | string | ISO 8601 timestamp of collection |

### Cost estimate

This actor makes a single HTTP request to the RSS feed and does no browsing, so it is one of the cheapest scrapers in the fleet to run. A full run covering the entire current feed (roughly 230 listings) costs a fraction of a cent in platform compute plus one residential proxy request. Usage cost only settles once the run reports SUCCEEDED — reading the dataset mid-run will undercount the final charge.

### Limitations

- **No location field.** The RSS feed does not include a workplace location, so this actor does not return one. Location and a few other details are only available on swissdevjobs.ch's individually rendered job pages, which are served differently depending on the requesting client and are not covered by this actor.
- **Salary is almost always present but not guaranteed.** swissdevjobs.ch mandates salary disclosure on nearly every listing; the rare exception publishes an undisclosed range, which this actor returns as `null` rather than a guessed number.
- **Single feed, no server-side filtering.** swissdevjobs.ch's `tech=` and `category=` query parameters are silently ignored by the feed, so this actor always returns the full set of current openings — filter by technology or keyword client-side after export if you need a subset.
- **Snapshot of currently open listings only.** The feed reflects what's open right now; it is not a historical archive.

### Related scrapers

Building a European tech-jobs dataset? These sibling actors follow the same clean-JSON approach:

- **Jobs.ch Scraper** — Switzerland's largest general job board
- **JobScout24.ch Scraper** — Swiss job listings across all sectors
- **Jobbasel.ch Scraper** — Basel-region Swiss job board
- **NoFluffJobs Scraper** — Polish/CEE tech jobs with salary ranges
- **Jobs.cz Scraper** — Czech tech and general job listings

### Disclaimer

This actor collects publicly available data from swissdevjobs.ch for legitimate research and aggregation use. Respect swissdevjobs.ch's terms of service and applicable data protection law when using the output.

# Actor input Schema

## `maxResults` (type: `integer`):

Maximum number of job listings to return. swissdevjobs.ch publishes a single RSS feed of all current openings (no working search/filter params server-side), so this just caps how many of the feed's current listings you get back.

## `proxyConfiguration` (type: `object`):

Proxy settings. The swissdevjobs.ch RSS feed sits behind Cloudflare and returns a challenge page to Apify's shared datacenter IPs, so residential proxy is required.

## Actor input object example

```json
{
  "maxResults": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "maxResults": 5,
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/swissdevjobs-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "maxResults": 5,
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/swissdevjobs-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "maxResults": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call studio-amba/swissdevjobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=studio-amba/swissdevjobs-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/e7tgPyNg6IqbNxyLf/builds/EtGUV21ijaR3uDasg/openapi.json
