# Nordic Jobs Scraper — Sweden & Norway Official APIs (`entranced_gelato/nordic-jobs-scraper`) Actor

Nordic job postings from official government APIs: Sweden (Platsbanken/JobTech) and Norway (NAV Arbeidsplassen). Unified schema, English-normalized fields, monitor mode. GDPR-safe: recruiter PII filtered, official open data.

- **URL**: https://apify.com/entranced\_gelato/nordic-jobs-scraper.md
- **Developed by:** [AIDevs](https://apify.com/entranced_gelato) (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 $0.70 / 1,000 job posting 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 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

## Nordic Jobs Scraper — Platsbanken (Sweden) + Arbeidsplassen (Norway)

**All data comes from official, government-operated open-data APIs. Nothing is scraped.** That makes this Actor uniquely reliable (no blocking, no CAPTCHAs, no HTML breakage) and uniquely compliant (source-approved data with published terms of use).

- 🇸🇪 **Sweden — Platsbanken**: [Arbetsförmedlingen JobTech Search API](https://jobsearch.api.jobtechdev.se) — the Swedish Public Employment Service's official open API covering the vast majority of publicly advertised jobs in Sweden.
- 🇳🇴 **Norway — Arbeidsplassen**: [NAV Job Vacancy Feed](https://navikt.github.io/pam-stilling-feed/) — the Norwegian Labour and Welfare Administration's official feed of job vacancies.

One run, one unified schema, two national labor markets — with English-normalized fields, salary when published, cross-board duplicate flagging, and a monitor mode for new-posting alert pipelines.

### Why this Actor

| | This Actor | Typical job scrapers |
|---|---|---|
| Data source | Official government APIs | HTML scraping |
| Blocking risk | None | Constant arms race |
| Legal posture | Published open-data terms, attributed | ToS gray zone |
| Recruiter PII | Actively filtered out | Often included |
| Proxies needed | No (runs cheap) | Yes |

### Input

| Field | Description |
|---|---|
| `sources` | `platsbanken` (SE), `arbeidsplassen` (NO), or both |
| `searchQuery` | Keywords, e.g. `react developer`. Norway: matched client-side (the NAV feed has no server-side search) |
| `location` | City/municipality/region, e.g. `Malmö`, `Oslo` |
| `employmentType` | `all` / `full_time` / `part_time` / `contract` / `internship` |
| `remoteOnly` | Sweden: API remote filter. Norway: best-effort keyword detection |
| `postedWithinDays` | Default 30 |
| `maxItemsPerSource` | Default 100, max 10 000 |
| `mode` | `scrape` (everything matching) or `monitor` (only postings not seen in previous runs — ideal for scheduled alerting) |
| `navFeedToken` | **Required for the Norway source**: your own registered NAV feed token (free — see Compliance below). Sweden needs no token |

### Output (one clean row per posting)

```json
{
  "id": "platsbanken-31243927",
  "source": "platsbanken",
  "country": "SE",
  "url": "https://arbetsformedlingen.se/platsbanken/annonser/31243927",
  "applyUrl": "https://…",
  "title": "Senior utvecklare",
  "titleEn": "Senior developer",
  "company": "Combitech Aktiebolag",
  "companyOrgId": "5562186790",
  "location": { "city": "Växjö", "region": "Kronobergs län", "country": "SE", "remote": false },
  "employmentType": "Heltid",
  "employmentTypeNormalized": "full_time",
  "salary": { "min": null, "max": null, "currency": "SEK", "period": "month", "raw": null },
  "description": "…PII-scrubbed text, max 3000 chars…",
  "skills": ["c#", ".net", "sql", "oracle", "git"],
  "publishedAt": "2026-07-03T09:50:08.000Z",
  "deadline": "2026-07-31T23:59:59.000Z",
  "duplicateOf": null,
  "isNewSinceLastRun": null,
  "scrapedAt": "2026-07-05T09:00:00.000Z"
}
````

Export as JSON, CSV, Excel, or feed it to the API/integrations like any Apify dataset.

#### Monitor mode → recruiting alerts

Set `mode: "monitor"` and schedule the Actor. Each run outputs only postings not seen before (state kept in a named key-value store). Wire the dataset into Slack/email/n8n/Make for instant new-job alerts.

#### Duplicate flagging

The same job posted in both countries (or twice in a feed) gets `duplicateOf` set to the first record's `id`, via a normalized `title + company` hash. Nothing is silently dropped — you decide.

### Compliance & legal (please read)

This Actor is built GDPR-first and open-data-only:

1. **Official sources with attribution.** Job ad data originates from **Arbetsförmedlingen (JobTech Development)**, used per their open-data terms, and from **NAV / Arbeidsplassen.no**, used per the [NAV API terms](https://arbeidsplassen.nav.no/vilkar-api). This Actor is **not affiliated with or endorsed by Arbetsförmedlingen or NAV**.
2. **NAV token — bring your own.** The Norway source runs **only with your own NAV consumer token** (`navFeedToken`); without it the source is skipped. Registration is free — email the NAV team as described in the [feed docs](https://navikt.github.io/pam-stilling-feed/) and agree to the [NAV API terms](https://arbeidsplassen.nav.no/vilkar-api). This means you consume NAV data under your own agreement with NAV, including **not retaining or displaying inactive/expired ads** — this Actor already outputs only ACTIVE ads.
3. **No recruiter PII — by design.** The output schema has no contact-person fields. NAV's `contactList` is never read. A tested scrubber redacts personal emails and phone numbers from descriptions (`[redacted-contact]`), while keeping generic company inboxes (`jobs@`, `hr@`, …). Where a contact is needed, use the posting's public `applyUrl`.
4. **You are the data controller downstream.** If you store or process this data, GDPR (and national law) applies to you: honor data-minimization, keep retention short (we recommend ≤30 days or until the ad's `deadline`), and delete postings that disappear from the source.
5. **No warranty.** This Actor is provided as-is, without warranty of any kind. You are solely responsible for how you use the data and for your own legal compliance.
6. **Takedown.** Employer or data subject who wants content removed from example outputs: open an issue on this Actor's Issues tab — handled promptly.

### Pricing

Pay per event: you're charged a small fee per job posting scraped (volume tiers apply), plus nothing else — platform usage is included. Because the sources are APIs, runs are fast and use minimal compute.

### FAQ

**Why no Denmark/Finland?** v1 ships only sources with official open APIs — that's the whole point of this Actor's reliability and compliance story. Danish/Finnish sources will be added if/when equivalently clean access exists. Feature requests welcome via the Issues tab.

**How fresh is the data?** Live at query time, straight from the source systems.

**Rate limits?** The Actor self-throttles politely and backs off on HTTP 429 automatically.

***

*Source attribution: job ad data © Arbetsförmedlingen (JobTech) and NAV (Arbeidsplassen.no), provided under their respective open-data terms.*

# Actor input Schema

## `sources` (type: `array`):

Official open-data APIs to query. Sweden: Arbetsförmedlingen JobTech (no key needed). Norway: NAV Arbeidsplassen feed — requires your own free NAV consumer token (see navFeedToken).

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

e.g. 'react developer' or 'sjuksköterska'. For Norway the NAV feed has no server-side search, so keywords are matched against title/description client-side.

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

City, municipality or region, e.g. 'Malmö', 'Oslo', 'Skåne'.

## `employmentType` (type: `string`):

Normalized employment type filter applied to results.

## `remoteOnly` (type: `boolean`):

Sweden: uses the API's remote filter. Norway: best-effort keyword detection.

## `postedWithinDays` (type: `integer`):

Only include postings published within this many days.

## `maxItemsPerSource` (type: `integer`):

Hard cap of results per selected source.

## `mode` (type: `string`):

Scrape returns everything matching; monitor returns only postings not seen in previous runs (state kept in a named key-value store).

## `monitorStoreName` (type: `string`):

Named key-value store used to remember postings already seen in monitor mode. Default: nordic-jobs-monitor.

## `navFeedToken` (type: `string`):

REQUIRED for the Norway source. Your own NAV pam-stilling-feed bearer token — register as a consumer for free (https://navikt.github.io/pam-stilling-feed/) and agree to the NAV API terms (https://arbeidsplassen.nav.no/vilkar-api). Without it, the Norway source is skipped. Sweden needs no token.

## Actor input object example

```json
{
  "sources": [
    "platsbanken",
    "arbeidsplassen"
  ],
  "searchQuery": "utvecklare",
  "employmentType": "all",
  "remoteOnly": false,
  "postedWithinDays": 30,
  "maxItemsPerSource": 100,
  "mode": "scrape"
}
```

# Actor output Schema

## `jobs` (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": "utvecklare"
};

// Run the Actor and wait for it to finish
const run = await client.actor("entranced_gelato/nordic-jobs-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": "utvecklare" }

# Run the Actor and wait for it to finish
run = client.actor("entranced_gelato/nordic-jobs-scraper").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 '{
  "searchQuery": "utvecklare"
}' |
apify call entranced_gelato/nordic-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=entranced_gelato/nordic-jobs-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Nordic Jobs Scraper — Sweden & Norway Official APIs",
        "description": "Nordic job postings from official government APIs: Sweden (Platsbanken/JobTech) and Norway (NAV Arbeidsplassen). Unified schema, English-normalized fields, monitor mode. GDPR-safe: recruiter PII filtered, official open data.",
        "version": "0.0",
        "x-build-id": "gfoOX9wAwYAJbwGnG"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/entranced_gelato~nordic-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-entranced_gelato-nordic-jobs-scraper",
                "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/entranced_gelato~nordic-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-entranced_gelato-nordic-jobs-scraper",
                "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/entranced_gelato~nordic-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-entranced_gelato-nordic-jobs-scraper",
                "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",
                "properties": {
                    "sources": {
                        "title": "Sources",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Official open-data APIs to query. Sweden: Arbetsförmedlingen JobTech (no key needed). Norway: NAV Arbeidsplassen feed — requires your own free NAV consumer token (see navFeedToken).",
                        "items": {
                            "type": "string",
                            "enum": [
                                "platsbanken",
                                "arbeidsplassen"
                            ],
                            "enumTitles": [
                                "Sweden — Platsbanken (JobTech API)",
                                "Norway — Arbeidsplassen (NAV feed API)"
                            ]
                        },
                        "default": [
                            "platsbanken",
                            "arbeidsplassen"
                        ]
                    },
                    "searchQuery": {
                        "title": "Keywords",
                        "type": "string",
                        "description": "e.g. 'react developer' or 'sjuksköterska'. For Norway the NAV feed has no server-side search, so keywords are matched against title/description client-side."
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "City, municipality or region, e.g. 'Malmö', 'Oslo', 'Skåne'."
                    },
                    "employmentType": {
                        "title": "Employment type",
                        "enum": [
                            "all",
                            "full_time",
                            "part_time",
                            "contract",
                            "internship"
                        ],
                        "type": "string",
                        "description": "Normalized employment type filter applied to results.",
                        "default": "all"
                    },
                    "remoteOnly": {
                        "title": "Remote only",
                        "type": "boolean",
                        "description": "Sweden: uses the API's remote filter. Norway: best-effort keyword detection.",
                        "default": false
                    },
                    "postedWithinDays": {
                        "title": "Posted within (days)",
                        "minimum": 1,
                        "maximum": 180,
                        "type": "integer",
                        "description": "Only include postings published within this many days.",
                        "default": 30
                    },
                    "maxItemsPerSource": {
                        "title": "Max items per source",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Hard cap of results per selected source.",
                        "default": 100
                    },
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "scrape",
                            "monitor"
                        ],
                        "type": "string",
                        "description": "Scrape returns everything matching; monitor returns only postings not seen in previous runs (state kept in a named key-value store).",
                        "default": "scrape"
                    },
                    "monitorStoreName": {
                        "title": "Monitor store name",
                        "type": "string",
                        "description": "Named key-value store used to remember postings already seen in monitor mode. Default: nordic-jobs-monitor."
                    },
                    "navFeedToken": {
                        "title": "NAV Arbeidsplassen API token",
                        "type": "string",
                        "description": "REQUIRED for the Norway source. Your own NAV pam-stilling-feed bearer token — register as a consumer for free (https://navikt.github.io/pam-stilling-feed/) and agree to the NAV API terms (https://arbeidsplassen.nav.no/vilkar-api). Without it, the Norway source is skipped. Sweden needs no token."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
