# 💼 Pracuj.pl Scraper | Poland Jobs & Salaries (`antique_sundew/pracuj-scraper`) Actor

Extract Pracuj.pl job advertisements, salary ranges, employment types, employer profiles, and skill requirements across Poland. Polish recruitment API.

- **URL**: https://apify.com/antique\_sundew/pracuj-scraper.md
- **Developed by:** [Alexandru Afanasiuc](https://apify.com/antique_sundew) (community)
- **Categories:** Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$3.00 / 1,000 job scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## Pracuj.pl Scraper — Poland Job Ads, Salaries & Remote Work

Fast Apify actor to extract public job listings from **Pracuj.pl**, Poland's largest job board. Returns titles, companies, salaries, locations, contract types, work modes, technologies, and apply URLs as clean JSON.

### Features

- **Fast HTTP-only scraper** — parses embedded Next.js `__NEXT_DATA__` JSON (no headless browser, 128–256 MB RAM).
- **Rich job data** — title, company, salary text, location, remote/hybrid flags, contract types, position levels, technologies, and apply URL.
- **Flexible filters** — keyword search, city, work mode, contract type, position level, posted-within days, salary-only filter.
- **Cloudflare-ready** — uses Apify Proxy by default for reliable access.
- **Structured output** — clean JSON / CSV ready for HR analytics, recruitment pipelines, or market research.

### Input Configuration

| Parameter | Type | Default | Description |
|---|---|---|---|
| `keywords` | Array | `["developer"]` | Search keywords (each runs as a separate search). |
| `city` | String | `null` | Polish city slug (e.g. `warszawa`, `krakow`, `wroclaw`). |
| `workMode` | String | `null` | Comma-separated: `full-office`, `hybrid`, `home-office`, `mobile`. |
| `contractType` | String | `null` | Contract codes: `0`=employment, `3`=B2B, `7`=internship. |
| `positionLevel` | String | `null` | Level codes: `17`=junior, `4`=mid, `18`=senior. |
| `postedWithinDays` | Integer | `null` | Only jobs from last 1, 3, 7, 14, or 30 days. |
| `onlyWithSalary` | Boolean | `false` | Return only offers with disclosed salary. |
| `maxItems` | Integer | `100` | Maximum job listings to return. |
| `proxyConfiguration` | Object | `{useApifyProxy: true}` | Apify proxy settings (recommended). |

#### Sample Input JSON

```json
{
  "keywords": ["developer", "programista"],
  "city": "warszawa",
  "workMode": "hybrid,home-office",
  "onlyWithSalary": true,
  "maxItems": 100
}
```

### Sample Output

```json
{
  "id": "12345678",
  "partitionId": 1,
  "title": "Senior Backend Developer",
  "url": "https://www.pracuj.pl/praca/senior-backend-developer-warszawa,oferta,12345678",
  "description": "Dołącz do zespołu...",
  "company": {
    "name": "TechCorp Poland Sp. z o.o."
  },
  "salary": {
    "text": "12 000 - 18 000 PLN brutto"
  },
  "location": "Warszawa",
  "isRemoteWorkAllowed": true,
  "workModes": ["hybrid"],
  "contractTypes": ["B2B", "Umowa o pracę"],
  "positionLevels": ["Senior"],
  "technologies": ["Python", "PostgreSQL", "Docker"],
  "publishedAt": "2026-08-08T10:00:00Z",
  "scrapedAt": "2026-08-10T12:00:00.000Z"
}
```

### Pricing

Pay-Per-Event: **$3.00 per 1,000 job listings** scraped.

### Legal & Compliance

This actor extracts only publicly accessible job posting information without requiring login or accessing private personal data. Compliant with GDPR — no personal profile scraping.

# Actor input Schema

## `keywords` (type: `array`):

Keywords to search on Pracuj.pl (e.g. \['developer', 'programista', 'marketing']). Each keyword runs as a separate search.

## `city` (type: `string`):

Optional Polish city filter (e.g. 'warszawa', 'krakow', 'wroclaw', 'gdansk').

## `workMode` (type: `string`):

Comma-separated work modes: full-office, hybrid, home-office, mobile.

## `contractType` (type: `string`):

Comma-separated contract type codes: 0=employment, 3=B2B, 7=internship.

## `positionLevel` (type: `string`):

Comma-separated level codes: 17=junior, 4=mid, 18=senior, 19=expert.

## `postedWithinDays` (type: `integer`):

Only jobs posted within N days. Allowed values: 1, 3, 7, 14, or 30.

## `onlyWithSalary` (type: `boolean`):

Return only offers that disclose a salary range.

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

Maximum number of job listings to return.

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

Apify proxy settings. Required for reliable access to Pracuj.pl (Cloudflare).

## Actor input object example

```json
{
  "keywords": [
    "developer"
  ],
  "onlyWithSalary": false,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("antique_sundew/pracuj-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("antique_sundew/pracuj-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 '{}' |
apify call antique_sundew/pracuj-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,antique_sundew/pracuj-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/K3cMwajhZGk1418Pu/builds/thAzaitwWUTphp5iJ/openapi.json
