# Jobs.ch Scraper (`shahidirfan/jobs-ch-scraper`) Actor

Automate job data extraction from Jobs.ch. Scrape listings with salaries, locations, company details, and descriptions. Perfect for job aggregation, market research, and career analytics. Handles pagination and filters automatically.

- **URL**: https://apify.com/shahidirfan/jobs-ch-scraper.md
- **Developed by:** [Shahid Irfan](https://apify.com/shahidirfan) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 1 total users, 0 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Jobs.ch Scraper

Extract comprehensive job listings from jobs.ch — Switzerland's largest job platform. Collect job titles, company names, locations, workload percentages, employment types, and publication dates at scale. Perfect for job market research, recruitment intelligence, and salary benchmarking across Switzerland.

### Features

- **Flexible Search** — Search by keyword, location, or paste a jobs.ch search URL directly
- **User Input Priority** — Keyword and location fields always override URL parameters
- **Automatic Pagination** — Collects across multiple pages to reach your desired result count
- **Workload Extraction** — Captures Swiss-style employment percentages (e.g. 80% – 100%)
- **Employment Type** — Identifies Permanent, Temporary, Freelance, and Internship positions
- **Deduplication** — Ensures no duplicate listings in your dataset
- **Fast & Lightweight** — Completes in seconds, no timeouts

### Use Cases

#### Job Market Research
Analyze hiring trends across Switzerland. Track which roles are growing, which cities are hiring most, and how workload expectations vary by industry.

#### Recruitment & Talent Intelligence
Build candidate pipelines by identifying companies actively hiring for specific roles. Monitor competitor hiring activity and stay ahead of talent demand.

#### Salary & Benefits Benchmarking
Collect job postings at scale to analyze compensation trends, workload norms, and benefit patterns across Swiss industries.

#### Data Aggregation & Reporting
Automate regular collection of job listings for HR dashboards, job board aggregators, or automated reporting workflows.

---

### Input Parameters

| Parameter | Type | Required | Default | Description |
|-----------|------|----------|---------|-------------|
| `startUrl` | String | No | — | A jobs.ch search URL (e.g. `https://www.jobs.ch/en/vacancies/?term=developer`). Keyword and location are extracted from the URL automatically. |
| `keyword` | String | No | — | Job search keyword (e.g. `software engineer`, `admin`, `nurse`). Takes priority over URL keyword. |
| `location` | String | No | — | City or region in Switzerland (e.g. `Zurich`, `Basel`). Takes priority over URL location. Leave empty for all Switzerland. |
| `results_wanted` | Integer | No | `20` | Maximum number of job listings to collect. |
| `max_pages` | Integer | No | `5` | Maximum number of result pages to visit (20 results per page). |
| `proxyConfiguration` | Object | No | — | Proxy settings for reliable data collection. |

---

### Output Data

Each job listing in the dataset contains:

| Field | Type | Description |
|-------|------|-------------|
| `id` | String | Unique job listing ID |
| `title` | String | Job position title |
| `company` | String | Hiring company name |
| `location` | String | City or place of work |
| `workload` | String | Employment workload (e.g. `80% - 100%`) |
| `job_type` | String | Employment type (Permanent, Temporary, etc.) |
| `date_posted` | String | Publication date (ISO 8601 format) |
| `url` | String | Direct link to the job listing on jobs.ch |

---

### Usage Examples

#### Search by Keyword

Extract software engineering jobs across Switzerland:

```json
{
    "keyword": "software engineer",
    "results_wanted": 50
}
````

#### Search by Keyword and Location

Find nurse jobs in Zurich:

```json
{
    "keyword": "nurse",
    "location": "Zurich",
    "results_wanted": 30,
    "max_pages": 3
}
```

#### Use a Search URL Directly

Paste any jobs.ch search URL:

```json
{
    "startUrl": "https://www.jobs.ch/en/vacancies/?term=admin&location=Basel",
    "results_wanted": 100,
    "max_pages": 5
}
```

***

### Sample Output

```json
{
    "id": "3c4152c9-cc33-4d13-8e96-627aff715227",
    "title": "CRM Admin (m/w/d) - 100%",
    "company": "Sodexo (Suisse) SA",
    "location": "Glattbrugg",
    "workload": "100%",
    "job_type": "Permanent",
    "date_posted": "2026-05-15T11:10:09+02:00",
    "url": "https://www.jobs.ch/en/vacancies/3c4152c9-cc33-4d13-8e96-627aff715227/"
}
```

***

### Tips for Best Results

#### Choose the Right Input Method

- Use **Start URL** when you have a specific jobs.ch search already configured with filters
- Use **Keyword + Location** for simple, direct searches from scratch
- If both are provided, explicit **Keyword** and **Location** fields always take priority

#### Scale Efficiently

- Start with `results_wanted: 20` for testing, then scale up for production runs
- Set `max_pages` high enough to reach your desired count (each page = 20 results)
- Use proxy configuration for large-scale or frequent runs

#### Proxy Configuration

For reliable large-scale collection, enable Apify Proxy:

```json
{
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": ["DATACENTER"]
    }
}
```

***

### Integrations

Connect your jobs.ch data with:

- **Google Sheets** — Analyze job trends in spreadsheets
- **Airtable** — Build a searchable job intelligence database
- **Slack** — Get alerts when new positions appear
- **Make / Zapier** — Trigger automated recruitment workflows
- **Webhooks** — Send results to your own systems

#### Export Formats

Download your dataset in:

- **JSON** — For developers and APIs
- **CSV** — For spreadsheet analysis
- **Excel** — For business reporting
- **XML** — For system integrations

***

### Frequently Asked Questions

#### Does this work with any jobs.ch URL?

Yes. Paste any jobs.ch vacancy search URL and the actor automatically extracts the keyword and location from the URL parameters.

#### How many results can I collect?

The actor can collect thousands of results — jobs.ch lists over 48,000 active positions. Set `results_wanted` and `max_pages` accordingly.

#### What is workload percentage?

Swiss job listings commonly specify employment percentage (e.g. 80%–100%) instead of full-time/part-time labels. This field captures that value directly.

#### Do I need a proxy?

Not for standard usage. For high-frequency or large-scale runs, enabling a proxy is recommended to ensure reliability.

#### Can I run this on a schedule?

Yes. Use Apify Schedules to run the actor daily or weekly for automated job market monitoring.

***

### Support

For issues or feature requests, contact support through the Apify Console.

#### Resources

- [Apify Documentation](https://docs.apify.com/)
- [API Reference](https://docs.apify.com/api/v2)
- [Scheduling Runs](https://docs.apify.com/schedules)

***

### Legal Notice

This actor is designed for legitimate data collection purposes. Users are responsible for ensuring compliance with jobs.ch terms of service and applicable laws. Use data responsibly and respect rate limits.

# Actor input Schema

## `startUrl` (type: `string`):

A jobs.ch search URL to scrape, e.g. https://www.jobs.ch/en/vacancies/?term=developer. If provided, keyword and location from the URL are used (unless you also fill the keyword/location fields below — those take priority).

## `keyword` (type: `string`):

Job search keyword, e.g. 'software engineer', 'admin', 'nurse'. Takes priority over keyword in Start URL.

## `location` (type: `string`):

City or region in Switzerland, e.g. 'Zurich', 'Basel', 'Bern'. Leave empty for all Switzerland.

## `results_wanted` (type: `integer`):

Maximum number of job listings to collect.

## `max_pages` (type: `integer`):

Maximum number of result pages to visit. Each page returns up to 20 results.

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

Proxy settings for reliable scraping. Datacenter proxy is sufficient for this actor.

## Actor input object example

```json
{
  "startUrl": "https://www.jobs.ch/en/vacancies/?term=software+engineer",
  "results_wanted": 20,
  "max_pages": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "startUrl": "https://www.jobs.ch/en/vacancies/?term=software+engineer",
    "results_wanted": 20,
    "max_pages": 5
};

// Run the Actor and wait for it to finish
const run = await client.actor("shahidirfan/jobs-ch-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 = {
    "startUrl": "https://www.jobs.ch/en/vacancies/?term=software+engineer",
    "results_wanted": 20,
    "max_pages": 5,
}

# Run the Actor and wait for it to finish
run = client.actor("shahidirfan/jobs-ch-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 '{
  "startUrl": "https://www.jobs.ch/en/vacancies/?term=software+engineer",
  "results_wanted": 20,
  "max_pages": 5
}' |
apify call shahidirfan/jobs-ch-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Jobs.ch Scraper",
        "description": "Automate job data extraction from Jobs.ch. Scrape listings with salaries, locations, company details, and descriptions. Perfect for job aggregation, market research, and career analytics. Handles pagination and filters automatically.",
        "version": "0.0",
        "x-build-id": "76nwtjpuh0GZVWgJe"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/shahidirfan~jobs-ch-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-shahidirfan-jobs-ch-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/shahidirfan~jobs-ch-scraper/runs": {
            "post": {
                "operationId": "runs-sync-shahidirfan-jobs-ch-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/shahidirfan~jobs-ch-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-shahidirfan-jobs-ch-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "startUrl": {
                        "title": "Start URL",
                        "type": "string",
                        "description": "A jobs.ch search URL to scrape, e.g. https://www.jobs.ch/en/vacancies/?term=developer. If provided, keyword and location from the URL are used (unless you also fill the keyword/location fields below — those take priority)."
                    },
                    "keyword": {
                        "title": "Keyword",
                        "type": "string",
                        "description": "Job search keyword, e.g. 'software engineer', 'admin', 'nurse'. Takes priority over keyword in Start URL."
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City or region in Switzerland, e.g. 'Zurich', 'Basel', 'Bern'. Leave empty for all Switzerland."
                    },
                    "results_wanted": {
                        "title": "Results Wanted",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of job listings to collect.",
                        "default": 20
                    },
                    "max_pages": {
                        "title": "Max Pages",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of result pages to visit. Each page returns up to 20 results.",
                        "default": 5
                    },
                    "proxyConfiguration": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Proxy settings for reliable scraping. Datacenter proxy is sufficient for this actor.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
