# 🏆 Best Cheapest Werk.nl Job Listing scrapper 🏆 (`claygenius/best-cheapest-werk-nl-job-listing-scrapper`) Actor

Scrape job postings from Werk.nl, the Dutch UWV national job portal, by keyword and location. Structured output with full descriptions, employer, and application details.

- **URL**: https://apify.com/claygenius/best-cheapest-werk-nl-job-listing-scrapper.md
- **Developed by:** [Muhammad Shamshad Aslam](https://apify.com/claygenius) (community)
- **Categories:** Jobs, AI, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

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

## Werk.nl Job Scraper

Scrape job postings (vacatures) from **[Werk.nl](https://www.werk.nl)** — the official Dutch national job portal run by UWV. Fast and reliable: this actor talks directly to Werk.nl's own search API, so you get complete, structured data every run — no fragile HTML parsing, no browser.

### Features

- ✅ **Search by keyword & location** — job title, keyword, or reference number, filtered by city or postal code + radius
- ✅ **Powerful filters** — education level, hours per week, contract type, and working hours (multi-select)
- ✅ **Full job details** — complete description, employer info, direct application link, contact person (name, phone, email), salary terms, dates
- ✅ **Clean structured output** — ready for spreadsheets, CRMs, or data pipelines
- ✅ **Automatic pagination** — scrape as many vacancies as you need
- ✅ **No login, no cookies to manage** — session/anti-forgery handling is fully automatic

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `keywords` | string | `react` | Job title, keyword(s), or reference number. Empty = browse all. |
| `location` | string | — | City or postal code (e.g. `Amsterdam`, `1011DK`). Empty = whole Netherlands. |
| `distance` | integer | `0` | Radius in km around the location (0 = exact). |
| `sortBy` | select | `relevance` | `relevance` or `date` (newest first). |
| `educationLevels` | multi-select | — | Primary / VMBO / HAVO-VWO / MBO / HBO-Bachelor / WO-Master / Not specified. |
| `hoursPerWeek` | multi-select | — | 0-8 / 9-16 / 17-24 / 25-32 / 33-40 / 40+ hours. |
| `contractTypes` | multi-select | — | Permanent / Possibly permanent / Temporary. |
| `workingHours` | multi-select | — | Office hours / Other. |
| `fetchDetails` | boolean | `true` | Fetch each vacancy's full page (description, employer, contact, apply link). |
| `maxItems` | integer | `50` | Maximum number of vacancies to scrape. |
| `proxyConfig` | proxy | NL Residential | Optional; recommended for large runs. |

Filters are optional — leave them empty for all results. Within one filter, multiple selections are combined with OR; different filters are combined with AND (same as the website).

#### Example input

```json
{
  "keywords": "developer",
  "location": "Amsterdam",
  "educationLevels": ["5"],
  "contractTypes": ["1"],
  "fetchDetails": true,
  "maxItems": 100
}
````

### Output

Each dataset item is one vacancy. With `fetchDetails` on:

```json
{
  "referenceNumber": 67355220,
  "title": "Mid-level Software Developer C#",
  "profession": "Software ontwikkelaar",
  "organisation": "Evoke BV",
  "city": "NIJMEGEN",
  "postcode": "6511RD",
  "contractType": "Vast",
  "studyLevel": "HBO/bachelor",
  "workLocationType": "Vaste werklocatie",
  "modified": "2026-07-13 00:00:00",
  "expirationDate": "2026-07-27T00:00:00",
  "description": "Do you have experience with C# and are you ready for the next step?...",
  "termsOfEmployment": "A salary of €3,765 - €5,790 per month; 25 vacation days...",
  "employer": {
    "organizationName": "Evoke BV",
    "website": "https://www.evokestaffing.com",
    "addressNetherlands": { "postcode": "6002EA", "city": "WEERT" }
  },
  "contactPerson": { "name": "Recruiting Team", "phoneNumber": "0495 518 999", "email": "connect@evokestaffing.com" },
  "applicationMethods": [{ "urlApplicationForm": "https://..." }],
  "source": "DGR",
  "url": "https://www.werk.nl/nl/vacatures/vacature/67355220"
}
```

Key fields:

- **Job**: `referenceNumber`, `title`, `profession`, `contractType`, `studyLevel`, `minHours`/`maxHours`, `modified`, `expirationDate`, `url`
- **Location**: `city`, `postcode`, `workLocationType`, `distanceKm`
- **Details** (when `fetchDetails` on): `description`, `termsOfEmployment`, `source`
- **Employer**: `organisation`, `employer` (name, website, sector, address)
- **Contact & apply**: `contactPerson` (name, phone, email), `applicationMethods` (direct apply URL)

### Use cases

- **Recruiting & sourcing** — monitor Dutch job market by role, region, and level
- **Lead generation** — employer names, websites, and recruiter contact details for outreach
- **Market research** — track demand, contract types, and hiring trends across the Netherlands
- **Job boards & aggregators** — feed fresh, fully-detailed Dutch vacancies into your product

### Notes

- Data comes directly from Werk.nl's public search API — accurate and complete.
- Turn off `fetchDetails` for faster, lighter runs when you only need the search-level fields.
- Export results as JSON, CSV, or Excel from the dataset tab, or pull them via the Apify API.

# Actor input Schema

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

Job title, keyword(s) or reference number (e.g. 'react', 'verpleegkundige', 'projectmanager'). Leave empty to browse all vacancies.

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

City or postal code (e.g. 'Amsterdam', 'Rotterdam', '1011DK'). Leave empty for the whole Netherlands.

## `distance` (type: `integer`):

Radius in km around the location. Leave 0 for exact/no radius. Only used when a location is set.

## `sortBy` (type: `string`):

Result ordering

## `educationLevels` (type: `array`):

Filter by required education level. Select one or more; leave empty for all.

## `hoursPerWeek` (type: `array`):

Filter by working hours per week. Select one or more; leave empty for all.

## `contractTypes` (type: `array`):

Filter by contract type. Select one or more; leave empty for all.

## `workingHours` (type: `array`):

Filter by working-hours type. Select one or more; leave empty for all.

## `fetchDetails` (type: `boolean`):

When ON, fetches each vacancy's full page: complete description, employer info, application method/URL, contact person, salary terms. One extra request per job.

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

Maximum number of vacancies to scrape

## `proxyConfig` (type: `object`):

Optional. Werk.nl is a Dutch site — Netherlands residential proxies recommended for large runs.

## Actor input object example

```json
{
  "keywords": "react",
  "distance": 0,
  "sortBy": "relevance",
  "fetchDetails": true,
  "maxItems": 50,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "NL"
  }
}
```

# Actor output Schema

## `vacatures` (type: `string`):

Scraped job postings with title, employer, location, and (optionally) full 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 = {
    "proxyConfig": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "NL"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("claygenius/best-cheapest-werk-nl-job-listing-scrapper").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 = { "proxyConfig": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "NL",
    } }

# Run the Actor and wait for it to finish
run = client.actor("claygenius/best-cheapest-werk-nl-job-listing-scrapper").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 '{
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "NL"
  }
}' |
apify call claygenius/best-cheapest-werk-nl-job-listing-scrapper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=claygenius/best-cheapest-werk-nl-job-listing-scrapper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "🏆 Best Cheapest Werk.nl Job Listing scrapper 🏆",
        "description": "Scrape job postings from Werk.nl, the Dutch UWV national job portal, by keyword and location. Structured output with full descriptions, employer, and application details.",
        "version": "1.0",
        "x-build-id": "p81dc2f1t5f7lCr3R"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/claygenius~best-cheapest-werk-nl-job-listing-scrapper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-claygenius-best-cheapest-werk-nl-job-listing-scrapper",
                "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/claygenius~best-cheapest-werk-nl-job-listing-scrapper/runs": {
            "post": {
                "operationId": "runs-sync-claygenius-best-cheapest-werk-nl-job-listing-scrapper",
                "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/claygenius~best-cheapest-werk-nl-job-listing-scrapper/run-sync": {
            "post": {
                "operationId": "run-sync-claygenius-best-cheapest-werk-nl-job-listing-scrapper",
                "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",
                "required": [
                    "maxItems"
                ],
                "properties": {
                    "keywords": {
                        "title": "Keywords",
                        "type": "string",
                        "description": "Job title, keyword(s) or reference number (e.g. 'react', 'verpleegkundige', 'projectmanager'). Leave empty to browse all vacancies.",
                        "default": "react"
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City or postal code (e.g. 'Amsterdam', 'Rotterdam', '1011DK'). Leave empty for the whole Netherlands."
                    },
                    "distance": {
                        "title": "Distance (km)",
                        "type": "integer",
                        "description": "Radius in km around the location. Leave 0 for exact/no radius. Only used when a location is set.",
                        "default": 0
                    },
                    "sortBy": {
                        "title": "Sort By",
                        "enum": [
                            "relevance",
                            "date"
                        ],
                        "type": "string",
                        "description": "Result ordering",
                        "default": "relevance"
                    },
                    "educationLevels": {
                        "title": "Education Level",
                        "type": "array",
                        "description": "Filter by required education level. Select one or more; leave empty for all.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1",
                                "2",
                                "3",
                                "4",
                                "5",
                                "6",
                                "7"
                            ],
                            "enumTitles": [
                                "Primary education",
                                "VMBO",
                                "HAVO/VWO",
                                "MBO",
                                "HBO/Bachelor",
                                "WO/Master",
                                "Not specified"
                            ]
                        }
                    },
                    "hoursPerWeek": {
                        "title": "Hours per Week",
                        "type": "array",
                        "description": "Filter by working hours per week. Select one or more; leave empty for all.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1",
                                "2",
                                "3",
                                "4",
                                "5",
                                "6"
                            ],
                            "enumTitles": [
                                "0-8 hours",
                                "9-16 hours",
                                "17-24 hours",
                                "25-32 hours",
                                "33-40 hours",
                                "More than 40 hours"
                            ]
                        }
                    },
                    "contractTypes": {
                        "title": "Contract Type",
                        "type": "array",
                        "description": "Filter by contract type. Select one or more; leave empty for all.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1",
                                "2",
                                "3"
                            ],
                            "enumTitles": [
                                "Permanent (Vast)",
                                "Possibly permanent (Mogelijk vast)",
                                "Temporary (Tijdelijk)"
                            ]
                        }
                    },
                    "workingHours": {
                        "title": "Working Hours",
                        "type": "array",
                        "description": "Filter by working-hours type. Select one or more; leave empty for all.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "1",
                                "2"
                            ],
                            "enumTitles": [
                                "Office hours (Kantoortijden)",
                                "Other (Anders)"
                            ]
                        }
                    },
                    "fetchDetails": {
                        "title": "Fetch Full Job Details",
                        "type": "boolean",
                        "description": "When ON, fetches each vacancy's full page: complete description, employer info, application method/URL, contact person, salary terms. One extra request per job.",
                        "default": true
                    },
                    "maxItems": {
                        "title": "Max Items",
                        "type": "integer",
                        "description": "Maximum number of vacancies to scrape",
                        "default": 50
                    },
                    "proxyConfig": {
                        "title": "Proxy Configuration",
                        "type": "object",
                        "description": "Optional. Werk.nl is a Dutch site — Netherlands residential proxies recommended for large runs."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
