# 🇨🇿 Jobs.cz Scraper — Czech Job Listings & Salaries (`hipersoft/jobs-cz-scraper`) Actor

Scrape public job listings from Jobs.cz, the Czech Republic's #1 job board. Search by keyword and location and export one clean row per job: title, company, location, salary, work type, promoted flag, posted date and the listing URL as JSON, CSV or Excel.

- **URL**: https://apify.com/hipersoft/jobs-cz-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.0015 / job scraped

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/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## 🇨🇿 Jobs.cz Scraper — Czech Job Listings & Salaries

Scrape public job listings from **Jobs.cz**, the Czech Republic's #1 job board, and export clean, structured data. Search by keyword, narrow down by **location** (city or region), keep only **remote / home-office** roles — or paste a ready-made Jobs.cz search or job URL — and get one tidy row per job: title, company, location, salary, work type, posted date and the listing link. Download everything as **JSON, CSV or Excel**, or pull it straight from the API.

Great for job-market research, salary benchmarking, recruiting and sourcing, building a job feed, or tracking new openings across Czechia.

### What it does

- 🔍 **Search by keyword** — find jobs by role, skill or title (e.g. `developer`, `účetní`, `marketing manager`).
- 📍 **Filter by location** — limit results to a Czech city or region (e.g. `Praha`, `Brno`, `Ostrava`, `Plzeň`).
- 🏠 **Remote / home-office only** — keep just the roles that offer a remote option.
- 📋 **Filter by employment type** — full-time, part-time, internship or contract.
- 🔗 **Paste Start URLs** — drop in any Jobs.cz search or job URL straight from your browser.
- 💰 **Salary insight** — capture the advertised salary as raw text plus parsed minimum, maximum and currency.
- 🧾 **Rich job fields** — title, company, location, salary, work type, promoted flag, posted date, company logo and rating.
- 🔎 **Optional full details** — enable *Include full details* for the full description, requirements, benefits and apply link.
- 📤 **Clean, flat output** — ready for spreadsheets, databases and dashboards.

### Input

| Field | Description |
| --- | --- |
| **Search keywords** | Keywords to search for (e.g. `developer`, `marketing manager`). |
| **Location** | Optional Czech city or region to limit the search. |
| **Employment type** | Optional. Keep only full-time, part-time, internship or contract jobs. |
| **Remote / home-office only** | Optional. Keep only jobs that offer a remote option. |
| **Start URLs** | Optional list of Jobs.cz search or job URLs. When set, these are used instead of the fields above. |
| **Include full details** | Fetch each job's detail page for extra fields. Slower, richer output. |
| **Max items** | Maximum number of jobs to collect (0 = no limit). |

#### Example input

```json
{
  "keywords": "developer",
  "location": "Praha",
  "remoteOnly": true,
  "maxItems": 100
}
```

### Output

Each job is one record. Example (fields vary by listing):

```json
{
  "jobId": "2001301852",
  "title": "Java developer - Kafka, mikroservisy",
  "companyName": "Agnostix, s.r.o.",
  "companyLogoUrl": "https://my.teamio.com/recruit/logo?id=...",
  "companyRating": "65 hodnocení na Atmoskopu",
  "location": "Praha – Nové Město",
  "salary": "140 000 – 190 000 Kč",
  "salaryMin": 140000,
  "salaryMax": 190000,
  "salaryCurrency": "CZK",
  "workType": ["Možnost občasné práce z domova"],
  "isRemote": true,
  "isPromoted": false,
  "postedDate": "2026-08-31",
  "postedDateText": "31. srpna",
  "detailUrl": "https://www.jobs.cz/rpd/2001301852/",
  "url": "https://www.jobs.cz/prace/?q%5B%5D=developer"
}
```

### Use cases

- **Recruiting & sourcing** — build a live feed of relevant openings and companies that are hiring.
- **Salary & market research** — benchmark roles, salaries and hiring demand across Czech regions.
- **Competitive intelligence** — track which companies are posting, and how often.
- **Job aggregators & dashboards** — power your own board or analytics with clean, structured data.

### FAQ

**Do I need an account or credentials?** No. Just set your search and run.

**Can I scrape a specific search from my browser?** Yes — paste one or more Jobs.cz search or job URLs into **Start URLs**.

**Can I collect only remote jobs?** Yes — enable **Remote / home-office only** to keep just the roles that offer a remote option.

**How do I get the full job description?** Enable **Include full details** to add the full description, requirements, benefits and apply link.

*This tool collects only public job listings. It does not access private, candidate or account data.*

# Actor input Schema

## `keywords` (type: `string`):

Keywords to search for (e.g. "developer", "účetní", "marketing manager"). Ignored when Start URLs are set.

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

Optional. Limit results to a Czech city or region (e.g. "Praha", "Brno", "Ostrava", "Plzeň"). Leave empty to search all of the Czech Republic.

## `employmentType` (type: `string`):

Optional. Keep only jobs of this employment type. Most reliable with "Include full details" enabled.

## `remoteOnly` (type: `boolean`):

Optional. Only collect jobs that offer a remote or home-office option.

## `startUrls` (type: `array`):

Optional. One or more Jobs.cz search-results or job-detail URLs. Paste the URL straight from your browser. When set, these are used instead of the fields above.

## `includeDetail` (type: `boolean`):

Fetch each job's detail page for extra fields (full description, benefits, requirements and apply link). Slower, but richer output.

## `maxItems` (type: `integer`):

Maximum number of jobs to collect across all searches (0 = no limit; collect everything the searches return).

## Actor input object example

```json
{
  "keywords": "developer",
  "employmentType": "",
  "remoteOnly": false,
  "includeDetail": false,
  "maxItems": 100
}
```

# Actor output Schema

## `results` (type: `string`):

The results as dataset items.

# 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 = {
    "keywords": "developer"
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/jobs-cz-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 = { "keywords": "developer" }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/jobs-cz-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "keywords": "developer"
}' |
apify call hipersoft/jobs-cz-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hipersoft/jobs-cz-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

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