# Platsbanken Jobs (Official Arbetsförmedlingen Source) (`vhsgreed/platsbanken-jobtech-api-fresh`) Actor

Swedish job listings from Platsbanken via the official, keyless JobTech API. Search by keyword, municipality, region or occupation field. Title, employer, location, salary, hours, published date, application deadline. Official source, ~$0.002/listing vs $0.15 Google Jobs.

- **URL**: https://apify.com/vhsgreed/platsbanken-jobtech-api-fresh.md
- **Developed by:** [Karl Sundström](https://apify.com/vhsgreed) (community)
- **Stats:** 2 total users, 1 monthly users, 50.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.38 / 1,000 job listings

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/actors/running/actors-in-store.md#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

## Platsbanken Jobs (Official Arbetsförmedlingen Source)

> Independent tool, not affiliated with Arbetsförmedlingen.

Extract **Swedish job listings from Platsbanken via the official, keyless JobTech API** — every ad Arbetsförmedlingen publishes, with structured metadata. Search by keyword, municipality, region or occupation field, or fetch a single ad by ID. Get title, employer, location, salary type, working hours, vacancies, deadlines and the Platsbanken URL. Official open data — no scraping, no API key.

### Why Platsbanken Jobs?

- 🏛️ **Official source** — straight from Arbetsförmedlingen's JobTech API, not a scraped aggregator.
- 📍 **Geography done right** — municipality and region filters use official SCB codes.
- 📋 **Full ad metadata** — salary type, working hours, duration, vacancies, remote-work flag.
- 🕰️ **Fresh labour-market signal** — published dates and application deadlines on every ad.

### Use cases

Recruitment sourcing in Sweden · labour-market and salary research by region · competitor hiring tracking · job board content feeds

### What data you get?

| 🏷️ Field | Description |
| --- | --- |
| 🆔 id | Platsbanken ad id |
| 💼 title | Job title |
| 🏢 employer / employerWorkplace | Employer and workplace |
| 📍 municipality / region / address | Location |
| 📋 employment\_type / salary\_type / working\_hours / duration | Employment conditions |
| 👥 vacancies | Number of openings |
| 📅 published / application\_deadline | Dates |
| 🏠 remote\_work | Remote-work flag |
| 🔗 url | Platsbanken URL |
| 📄 description | Full description (single-ad mode) |

### How to use

1. Add the actor to your Apify account and click **Run**.
2. Enter `q` (e.g. `sjuksköterska`), and/or `municipality` / `region` SCB codes.
3. Optionally filter `occupationField` or `remoteWork`.
4. Set `limit` (default 10, max 100) and export as JSON, CSV or Excel.

### Input

```json
{
  "q": "sjuksköterska",
  "municipality": "0180",
  "limit": 50
}
```

| Field | Type | Description | Default |
| --- | --- | --- | --- |
| `id` | string | Platsbanken ad id for single-ad lookup (e.g. `31444396`); skips search mode | — |
| `q` | string | Free-text query, e.g. `sjuksköterska` or `javautvecklare` | — |
| `municipality` | string | Official SCB municipality code, e.g. `0180` = Stockholm kommun. Text names return 0 hits | — |
| `region` | string | Zero-padded county code, e.g. `03` = Uppsala län | — |
| `occupationField` | string | Legacy Arbetsförmedlingen field code (1=social, 2=teknisk, …) | — |
| `remoteWork` | boolean | Only ads flagged for remote work (API requires it combined with other filters) | — |
| `limit` | integer | Maximum listings returned | 10 (max 100) |

### Output

```json
{
  "id": "31444396",
  "title": "Sjuksköterska, kirurgisk avdelning",
  "employer": "Region Stockholm",
  "municipality": "Stockholm",
  "region": "Stockholms län",
  "employment_type": "Heltid",
  "salary_type": "Fast månads- vecko- eller timlön",
  "working_hours": "Heltid",
  "vacancies": 2,
  "published": "2026-09-01",
  "application_deadline": "2026-09-30",
  "remote_work": false,
  "url": "https://arbetsformedlingen.se/platsbanken/annonser/31444396"
}
```

### Support

Questions or missing fields? Open an issue on the actor page or contact the developer via Apify.

# Actor input Schema

## `id` (type: `string`):

Platsbanken ad id for single-ad lookup (e.g. 31444396). Skips search mode.

## `q` (type: `string`):

Free-text query, e.g. 'sjuksköterska' or 'javautvecklare'

## `municipality` (type: `string`):

Official SCB municipality code, e.g. 0180 = Stockholm kommun. Text names return 0 hits.

## `region` (type: `string`):

Zero-padded county code, e.g. 03 = Uppsala län, 01 = Stockholm (leading zero optional)

## `occupationField` (type: `string`):

Legacy Arbetsförmedlingen field code: 1=social, 2=teknisk, 3=konstruktion/tillverkning, 4=administrativ, 5=hög kompetens, 6=medel, 7=lägre, 8=okvalificerat, 9=matematisk-naturvetenskaplig

## `remoteWork` (type: `boolean`):

Only ads flagged for remote work (API requires it combined with other filters)

## `limit` (type: `integer`):

Maximum listings returned (default 10, max 100)

## Actor input object example

```json
{
  "q": "utvecklare"
}
```

# Actor output Schema

## `listings` (type: `string`):

Dataset of Swedish job listings. Fields: id, title, employer, employerWorkplace, municipality, region, address, employment\_type, salary\_type, working\_hours, duration, vacancies, published, application\_deadline, remote\_work, url, source (plus description in single-ad mode).

## `listingsJson` (type: `string`):

Full dataset items as raw JSON.

## `runStats` (type: `string`):

Key-value store entry OUTPUT\_STATS: pushed count, total matches, mode.

## `runView` (type: `string`):

Inspect this run, its logs and storages in Apify Console.

# 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 = {
    "q": "utvecklare"
};

// Run the Actor and wait for it to finish
const run = await client.actor("vhsgreed/platsbanken-jobtech-api-fresh").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 = { "q": "utvecklare" }

# Run the Actor and wait for it to finish
run = client.actor("vhsgreed/platsbanken-jobtech-api-fresh").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 '{
  "q": "utvecklare"
}' |
apify call vhsgreed/platsbanken-jobtech-api-fresh --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,vhsgreed/platsbanken-jobtech-api-fresh"
        }
    }
}
```

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/qPEHSpNmsJ9BFzIOd/builds/cOCtOcN4ozpTjbXUs/openapi.json
