# Tempo-Team.be Scraper — Belgian Staffing Agency Jobs (`studio-amba/tempo-team-scraper`) Actor

Scrape job listings from Tempo-Team Belgium (RGF Staffing) via its public JSON API. Search by keyword in Dutch or French. No login or cookies required.

- **URL**: https://apify.com/studio-amba/tempo-team-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 $5.00 / 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.

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

## Tempo-Team Belgium Scraper

Extract job listings from [Tempo-Team Belgium](https://www.tempo-team.be), the Belgian staffing agency of RGF Staffing (the same group behind Randstad), as clean structured JSON. Search by keyword, pick your language, and get job titles, companies, locations, salary, employment type and posting dates in one run.

No login. No cookies. No browser automation. The actor calls the same public JSON API the Tempo-Team Belgium website uses internally, so it is fast, stable and returns real server-side pagination — not a fixed page of results.

### What this actor does

Given a search keyword, this actor collects the matching job listings from Tempo-Team Belgium and returns one row per job with:

- Job title
- Hiring company (Tempo-Team, plus the end client when disclosed — Delhaize, Kuehne+Nagel, DSV, etc.)
- Location (city, province)
- Language of the posting (Dutch or French)
- Employment type (contract type and working hours)
- Salary, when disclosed
- Posting date
- A 300–400 character description excerpt
- The job's unique ID and direct URL

Tempo-Team Belgium publishes listings in Dutch and French. You can search with keywords in either language and choose which language version of the site to crawl.

### How to scrape Tempo-Team.be data

1. Open the actor and set a **Search Query** (for example `logistiek`, `magazijnier`, `vente` or `comptable`). Leave it empty to browse every current listing.
2. Optionally set a **Location filter** such as `Antwerpen`, `Brussel` or `Liège` to narrow results to that city or province.
3. Pick a **Language** (`nl` or `fr`) — Tempo-Team Belgium has no English site, so only these two are offered.
4. Set **Max Results** — the API supports real pagination (verified up to 200 results per request, chunked automatically), so large runs work without repeating searches.
5. Leave the proxy on the default Apify setting and click **Start**.

The actor calls Tempo-Team's job-search API directly for your query and language, applies your optional location filter, and writes everything to the dataset. You can export the result as JSON, CSV or Excel.

### Input

| Field | Type | Description |
|-------|------|-------------|
| `searchQuery` | string | Keyword to search for. Dutch or French both work. Leave empty to browse all current listings. Default: `logistiek`. |
| `location` | string | Optional city or province filter, applied client-side (e.g. `Antwerpen`, `Liège`). |
| `language` | string | Site language to crawl: `nl` or `fr`. Default: `nl`. |
| `maxResults` | integer | Maximum number of listings to return (up to 2000). Default: `30`. |
| `proxyConfiguration` | object | Apify proxy settings. Default: standard Apify proxy — no anti-bot protection was found on this site. |

#### Example input

```json
{
    "searchQuery": "logistiek",
    "location": "Antwerpen",
    "language": "nl",
    "maxResults": 30,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
}
```

### Output

Each dataset item looks like this (real output from a test run):

```json
{
    "jobTitle": "vendeur rayon frais",
    "company": "DELHAIZE",
    "clientCompany": "DELHAIZE",
    "locationRaw": "Hannut, Liège",
    "locationParsed": { "city": "Hannut", "country": "Belgium" },
    "language": "fr",
    "postedAt": "2026-07-03T08:24:56.748929335Z",
    "descriptionSnippet": "Tu as de l'expérience en supermarché et tu recherches un emploi en vente (30h/semaine) en vue de long terme ? Alors tu es peut-être notre prochain vendeur rayon frais à Hannut !...",
    "url": "https://www.tempo-team.be/fr/candidats/nos-offres/vendeur-rayon-frais_hannut_22105ad0-df21-4f75-92ee-9e023b09fffc/",
    "employmentType": "Mission d'intérim",
    "salaryRaw": "€13.39 par heure",
    "source": "tempo-team.be",
    "scrapedAt": "2026-08-08T09:14:54.720Z",
    "jobId": "22105ad0-df21-4f75-92ee-9e023b09fffc",
    "category": "Achat & Vente"
}
```

#### Output fields

| Field | Type | Description |
|-------|------|-------------|
| `jobTitle` | string | Job title |
| `company` | string | Hiring company as posted — Tempo-Team itself unless a client is disclosed |
| `clientCompany` | string | Tempo-Team's end client, when disclosed on the listing |
| `locationRaw` | string | Location as shown on the listing |
| `locationParsed` | object | `{ city, country }` |
| `language` | string | ISO 639-1 language code of the posting (`nl` or `fr`) |
| `postedAt` | string | ISO 8601 posting timestamp |
| `descriptionSnippet` | string | 300–400 character plain-text excerpt of the description |
| `url` | string | Full job listing URL, in the requested language |
| `employmentType` | string | Contract type and working hours |
| `salaryRaw` | string | Raw salary data, when disclosed (min/max, currency symbol, unit) |
| `source` | string | Source site identifier (`tempo-team.be`) |
| `scrapedAt` | string | ISO 8601 timestamp of collection |
| `jobId` | string | Unique Tempo-Team job identifier |
| `category` | string | Tempo-Team's internal job classification category |

### Cost estimate

This actor makes lightweight JSON API requests — no browser, no per-item detail page fetches. A single page of up to 200 results costs one request. Runs finish in seconds to a few minutes depending on `maxResults`. Usage is only charged after a run finishes with status SUCCEEDED — a failed or aborted run doesn't bill for partial results.

### Limitations

- **Belgium only, Dutch and French.** Tempo-Team Belgium has no English site — `/en/` paths return 404. Set `language` to `nl` or `fr`.
- **Location filtering is client-side.** The underlying API's location parameters didn't reverse-engineer cleanly in testing, so the `location` input filters the fetched results by substring match rather than querying the API directly.
- **Salary is not always disclosed.** Many Tempo-Team Belgium listings don't publish pay rates; `salaryRaw` is empty for those.

### Related scrapers

Building a European staffing and public-employment dataset? These sibling actors follow the same clean-JSON approach:

- **Randstad Belgium Scraper** — Randstad's Belgian staffing listings (same RGF Staffing group)
- **VDAB Scraper** — Flemish public employment service
- **Le Forem Scraper** — Walloon public employment service
- **Actiris Scraper** — Brussels public employment service
- **StepStone Scraper** — Belgian commercial job board

### Disclaimer

This actor collects publicly available data from Tempo-Team Belgium for legitimate research and aggregation use. Respect Tempo-Team's terms of service and applicable data protection law when using the output.

# Actor input Schema

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

Keyword to search for (e.g. 'logistiek', 'magazijnier', 'vente', 'comptable'). Leave empty to browse all current listings. Dutch or French keywords both work depending on the selected language.

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

Optional city or province to filter results by (e.g. 'Antwerpen', 'Brussel', 'Liège'). Applied client-side after fetching — the API does not expose a reliable server-side location parameter.

## `language` (type: `string`):

Site language to crawl. Tempo-Team Belgium publishes jobs in Dutch and French only (no English version).

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

Maximum number of job listings to return. The API supports real server-side pagination (verified up to 200 results per request, chunked automatically for larger runs).

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

Proxy settings. No anti-bot protection was detected on this site's API or pages — the default Apify proxy is sufficient.

## Actor input object example

```json
{
  "searchQuery": "logistiek",
  "language": "nl",
  "maxResults": 10,
  "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 = {
    "searchQuery": "logistiek",
    "maxResults": 10,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

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

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

```

## MCP server setup

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