# Burzarada HZZ Scraper — Croatia National Job Listings (`studio-amba/burzarada-hr-scraper`) Actor

Scrape job listings from burzarada.hzz.hr, Croatia's national public employment service portal (run by HZZ, Hrvatski zavod za zapošljavanje). Search by job title and get employer, location, application deadline and direct links.

- **URL**: https://apify.com/studio-amba/burzarada-hr-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

## Burzarada HZZ Scraper

Extract job listings from [burzarada.hzz.hr](https://burzarada.hzz.hr), Croatia's national public employment service portal, run by HZZ (Hrvatski zavod za zapošljavanje). The portal is the country's official vacancy register — every employer registering an opening with the employment service, plus direct employer postings, ends up here.

No login. No cookies session that expires mid-run. No browser automation. The actor reads the same server-rendered listing and detail pages a visitor's browser would.

### What this actor does

Given a search keyword, this actor collects every matching job listing from burzarada.hzz.hr and returns one row per listing with:

- Job title
- Hiring employer
- Workplace location (municipality)
- Number of open positions
- Application deadline
- The listing's unique ID and direct URL
- Optionally (with `fetchFullDescription`): employment type, working hours, education level, driving licence requirement, work experience, full description and contact info

### Why use it

- **National labour market research** — track vacancy volume, employer activity and role demand across Croatia.
- **Recruitment intelligence** — see which employers are actively hiring and where, before it shows up on aggregator job boards.
- **Public-sector data journalism** — this is the same register HZZ itself publishes, structured for analysis.
- **Aggregators and job boards** — feed Croatian public-sector-registered vacancies into your own product alongside private job boards.

### How to scrape Burzarada Rada HZZ job data

1. Open the actor and set a **Search Query** — a Croatian job title or profession keyword (for example `kuhar`, `konobar`, `vozač`, `prodavač`, `njegovatelj`). Leave it empty to pull all current listings nationwide.
2. Set **Max Results** to how many listings you want.
3. Turn on **Fetch Full Description** if you want employment type, working hours, education level, driving licence, work experience, a free-text description and contact details for each listing — this costs one extra request per job.
4. Leave the proxy on the default automatic setting and click **Start**.

The actor pages through the listings (up to 75 per page) until it reaches your Max Results or runs out of listings, then writes everything to the dataset. You can export the result as JSON, CSV or Excel.

### Input

| Field | Type | Description |
|-------|------|-------------|
| `searchQuery` | string | Job title / profession to search for. Croatian keywords work best. Default: `kuhar`. Leave empty for all current listings. |
| `maxResults` | integer | Maximum number of listings to return. Default: `100`. |
| `fetchFullDescription` | boolean | Fetch each listing's detail page for employment type, working hours, education, driving licence, experience, description and contact. Default: `false`. |
| `proxyConfiguration` | object | Apify proxy settings. Default: automatic (no anti-bot on this site). |

#### Example input

```json
{
    "searchQuery": "kuhar",
    "maxResults": 100,
    "fetchFullDescription": true,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
}
```

### Output

Each dataset item looks like this (with `fetchFullDescription: true`):

```json
{
    "jobTitle": "VOZAČ / VOZAČICA B KATEGORIJE",
    "employer": "MIKULIĆ društvo s ograničenom odgovornošću za trgovinu, ugostiteljstvo i turizam",
    "location": "MATULJI",
    "positionsWanted": 5,
    "employmentType": "Na neodređeno; novootvoreni poslovi mogućnost zapošljavanja umirovljenika",
    "workingHours": "Puno radno vrijeme",
    "educationLevel": "Osnovna škola niži razredi Završena osnovna škola",
    "drivingLicence": null,
    "workExperience": null,
    "description": "OPIS POSLA: Vozač/vozačica B kategorije-kombi. Ukrcaj robe u skladištu te isporuka prema trgovačkim lancima. Briga o vozilu i robi. Kontakt: 091/500-3604",
    "contact": "osobni dolazak: CESTA DALMATINSKIH BRIGADA 17, MATULJI mobitel: 091 5003604 e-mailom: antemikulic5@gmail.com",
    "validFrom": "30.7.2026.",
    "applicationDeadline": "30.8.2026.",
    "jobId": "165236673",
    "url": "https://burzarada.hzz.hr/RadnoMjesto_Ispis.aspx?WebSifra=165236673",
    "scrapedAt": "2026-08-21T09:12:03.736Z"
}
```

#### Output fields

| Field | Type | Description |
|-------|------|-------------|
| `jobTitle` | string | Title of the job listing |
| `employer` | string | Name of the hiring company |
| `location` | string | Workplace municipality |
| `positionsWanted` | number | Number of openings for this listing |
| `employmentType` | string | Contract type (permanent/fixed-term). Only with `fetchFullDescription`. |
| `workingHours` | string | Full-time/part-time as published. Only with `fetchFullDescription`. |
| `educationLevel` | string | Required education level. Only with `fetchFullDescription`. |
| `drivingLicence` | string | Required driving licence category, if any. Only with `fetchFullDescription`. |
| `workExperience` | string | Required work experience. Only with `fetchFullDescription`. |
| `description` | string | Free-text job description. Only with `fetchFullDescription`. |
| `contact` | string | Contact email or phone as published. Only with `fetchFullDescription`. |
| `validFrom` | string | Listing validity start date (Croatian `d.M.yyyy.` format). Only with `fetchFullDescription`. |
| `applicationDeadline` | string | Application deadline as published (Croatian `d.M.yyyy.` format) |
| `jobId` | string | Unique burzarada.hzz.hr listing ID (`WebSifra`) |
| `url` | string | Full job listing URL |
| `scrapedAt` | string | ISO 8601 timestamp of collection |

### Cost estimate

This actor parses lightweight server-rendered HTML and no browser, so runs are cheap and fast. One request returns up to 75 listings without `fetchFullDescription`, or one extra request per listing with it enabled. Exact cost depends on your Apify plan and proxy usage. Usage is only charged after a run finishes with status SUCCEEDED — a failed or aborted run doesn't bill for partial results.

### Limitations

- **Salary is not published on this portal.** HZZ listings don't carry a structured or free-text salary field — this is a data-source limitation, not a scraping gap.
- **Dates are published in Croatian `d.M.yyyy.` format** (e.g. `20.9.2026.`), not converted to ISO 8601, matching how HZZ itself presents them.
- **Location is a free-text municipality name**, not split into structured city/region/postal-code fields, matching the source.
- `employmentType`, `workingHours`, `educationLevel`, `drivingLicence`, `workExperience`, `description`, `contact` and `validFrom` are only populated when `fetchFullDescription` is enabled — the default fast mode returns only the list-page fields.
- Some detail fields (driving licence, accommodation, work experience) are legitimately conditional on the job and left empty by the employer for many listings.

### Related scrapers

Building a European jobs dataset, or covering the Croatian market? These sibling actors follow the same clean-data approach:

- **Mojposao Scraper** — Croatia's largest private job board
- **Posao.hr Scraper** — Croatia's national job classifieds site
- **Služby Zamestnanosti Scraper** — Slovakia's national public employment service
- **JobsIreland Scraper** — Ireland's national public employment service
- **CVVP NVA Scraper** — Latvia's national public employment service

### Disclaimer

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

# Actor input Schema

## `searchQuery` (type: `string`):

Job title / profession to search for (e.g. 'kuhar', 'konobar', 'vozač', 'prodavač'). Leave empty to return all current listings. Croatian keywords work best.

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

Maximum number of job listings to return.

## `fetchFullDescription` (type: `boolean`):

Also fetch each job's detail page for employment type, working hours, education level, driving licence, work experience, full description and contact info. Slower (one extra request per job) but richer output.

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

Proxy settings. burzarada.hzz.hr has no anti-bot protection and is not geo-locked — the automatic Apify proxy pool works fine.

## Actor input object example

```json
{
  "searchQuery": "kuhar",
  "maxResults": 5,
  "fetchFullDescription": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (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 = {
    "searchQuery": "kuhar",
    "maxResults": 5,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/burzarada-hr-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 = {
    "searchQuery": "kuhar",
    "maxResults": 5,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/burzarada-hr-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 '{
  "searchQuery": "kuhar",
  "maxResults": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call studio-amba/burzarada-hr-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,studio-amba/burzarada-hr-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/Wj7Hw3hT96HsK1Bbk/builds/AmJm57bmhUMTEVbzK/openapi.json
