# Eurojobs Scraper (`dadhalfdev/eurojobs-scraper`) Actor

Scrape job listings from eurojobs.com. Use filters (keywords, location, country, listing type) or paste a search/vacancy URL — returns company, location, description, apply link, and dates.

- **URL**: https://apify.com/dadhalfdev/eurojobs-scraper.md
- **Developed by:** [Marco Rodrigues](https://apify.com/dadhalfdev) (community)
- **Categories:** Jobs
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$2.00 / 1,000 results

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

## 💼 Eurojobs Scraper

Want job listings from [Eurojobs.com](https://eurojobs.com/) without clicking through pages? This scraper makes it easy.

Use **structured filters** (keywords, country, company) — better for AI agents — **or** paste an **`input_url`** from your browser. When `input_url` is a vacancy page it scrapes that job; when it’s a search URL it overrides the filters. Either way, you get clean CSV/JSON with company, location, description, apply link, and dates.

### 💡 Perfect for...

- **Job seekers & recruiters:** Track roles across Europe and beyond.
- **Agencies:** Monitor competitor postings and hiring activity.
- **Market research:** Analyze hiring by country and company.
- **🤖 AI Agents:** Power bots and OpenClaw workflows with live Eurojobs search.
- **📚 RAG Systems:** Feed titles, descriptions, and apply links into retrieval pipelines.
- **🔗 AI Workflows:** Plug into LangChain, AutoGPT, CrewAI, and similar stacks.

### ✨ Why you'll love this scraper

- 🔗 **Input URL or Filters:** Paste a Eurojobs search or vacancy URL (`input_url`), or use structured filters (better for AI agents).
- 🎯 **Website-Matched Filters:** Keywords, country, company, and sort map to Eurojobs search options.
- 🧾 **Full details by default:** Description, closing date, reference, client/employer, and apply link — not just search teasers.
- 🇪🇺 **Europe-first:** Strong coverage of European markets plus major global hubs listed on Eurojobs.

### 📦 What's inside the data?

For every job listing, you will get:

- **Core:** `id`, `url`, `title`, `preview`, `description`
- **Employer:** `company`, `client_employer`
- **Location:** `location`, `city`, `region`, `country`
- **Meta:** `listing_type`, `employment_type`, `posted_at`, `closing_at`, `reference`
- **Apply:** `apply_url`

### 🚀 Quick start

**Option A — Filters**

1. Set keywords (e.g. `software engineer`) and optionally a country.
2. Optionally set company and sort.
3. Keep **Fetch full job details** on, set `max_jobs`, and click **Start**.

**Option B — Input URL**

1. Open [Eurojobs](https://eurojobs.com/jobs), apply filters (or open one vacancy).
2. Paste the URL into `input_url`.
3. Start the run.

Export CSV, Excel, or JSON when done.

***

#### Tech details for developers 🧑‍💻

**Input Example (filters):**

```json
{
  "keywords": "software engineer",
  "country": "166",
  "sort_by": "newest",
  "fetch_details": true,
  "max_jobs": 100
}
```

**Input Example (URL override):**

```json
{
  "input_url": "https://eurojobs.com/jobs?q=nurse&country=67&sort=newest",
  "max_jobs": 50
}
```

**Output Example:**

```json
{
  "id": "14907889",
  "url": "https://eurojobs.com/jobs/14907889/data-solution-architect-14907889",
  "title": "Data Solution Architect",
  "company": "JR Netherlands",
  "client_employer": "Cegeka",
  "location": "nijmegen, gelderland, The Netherlands",
  "country": "The Netherlands",
  "listing_type": "Basic",
  "posted_at": "2026-07-08",
  "closing_at": "2026-08-22",
  "apply_url": "https://eurojobs.com/jobs/14907889/apply",
  "source": "eurojobs"
}
```

# Actor input Schema

## `input_url` (type: `string`):

Optional. Paste an Eurojobs search results URL (/jobs?...) or a single vacancy URL (/jobs/{id}/...) to override the filters below.

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

Job title, skill, or company keywords (Eurojobs “What” field). Ignored when input\_url is set.

## `country` (type: `string`):

Optional country filter (Eurojobs country list). Ignored when input\_url is set.

## `company` (type: `string`):

Optional company name filter. Ignored when input\_url is set.

## `sort_by` (type: `string`):

Result order on Eurojobs.

## `fetch_details` (type: `boolean`):

When enabled (recommended), include full description, closing date, reference, client/employer, and apply link for each job.

## `max_jobs` (type: `integer`):

How many job listings to return (1–1000).

## Actor input object example

```json
{
  "keywords": "software engineer",
  "country": "",
  "sort_by": "newest",
  "fetch_details": true,
  "max_jobs": 50
}
```

# Actor output Schema

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

Table view of scraped jobs using the dataset 'overview' view.

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

All scraped jobs from the default dataset without view transformation.

# 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": "software engineer"
};

// Run the Actor and wait for it to finish
const run = await client.actor("dadhalfdev/eurojobs-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": "software engineer" }

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

```

## MCP server setup

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