# Finn.no $0.8💰 URL | Keyword |  Deep Search Scraper (`abotapi/finn-no-jobs-scraper`) Actor

From $0.8/1K. Scrape active Finn.no ads via search builder or URL. Returns 30+ fields per ad, including full HTML description, employer details, deadline, contacts, languages, sector, industries, keywords, and apply URL.

- **URL**: https://apify.com/abotapi/finn-no-jobs-scraper.md
- **Developed by:** [AbotAPI](https://apify.com/abotapi) (community)
- **Categories:** Jobs, E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.80 / 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.
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

## Finn.no Jobs Scraper

Scrape every active job ad on Finn.no, Norway's largest classifieds portal, in two clicks. Two input modes (Search builder, URL paste), 30+ structured fields per ad including the full HTML description, employer details, deadline, contact persons, working languages, sector, industries, keywords, and the apply URL. Fast and free-tier-friendly: runs on the Apify default proxy with no extra setup.

### Why This Scraper?

- 30+ fields per ad, not just the SERP card. Pulls the structured JSON-LD JobPosting plus rendered detail-page metadata (sector, industries, contact persons, keywords, apply URL).
- Two input modes that both work for individual ads or full searches: build by keyword, location, employment type, industry, occupation, sector, working language, and posted-since; or paste any finn.no/job URL (including a single /job/ad/<id>) and the scraper walks pagination forward from there.
- Designed for free-tier usage: default proxy is the Apify Datacenter pool, available on every plan. Three-tier preflight ladder demotes to no-group, then no-proxy, if the chosen tier fails.
- Per-search budget cap so multi-keyword runs return a fair share from each search; client-side de-duplication across pages and searches via finnkode.
- ~50 ads per SERP page, 2 to 5 ads per second sustained, low memory (256 MB default).
- Skip sponsored placements ("Betalt plassering") with a single checkbox if you only want organic results.

### Data You Get

> Sample shape: values are illustrative placeholders, not from a live ad.

| Field | Example |
|---|---|
| `id` | `"460000000"` |
| `idInt` | `460000000` |
| `url` | `"https://www.finn.no/job/ad/460000000"` |
| `title` | `"Sample Job Title"` |
| `subtitle` | `"Sample Subtitle Headline"` |
| `employer` | `"Sample Employer AS"` |
| `employerUrl` | `"http://www.example.com/"` |
| `employerHomepage` | `"http://www.example.com/"` |
| `employerLogo` | `"https://images.finncdn.no/dynamic/default/0000/0/0/000000_0000000000.png"` |
| `streetAddress` | `"Sample Street 1"` |
| `postalCode` | `"0000"` |
| `city` | `"Oslo"` |
| `addressCountry` | `"NO"` |
| `locationDisplay` | `"Oslo"` |
| `locationLink` | `"https://www.finn.no/job/search?location=1.20001.20061"` |
| `latitude` | `59.9000` |
| `longitude` | `10.7000` |
| `datePosted` | `"2026-01-01"` |
| `datePostedEpochMs` | `1735689600000` |
| `relativePosted` | `"2 dager siden"` |
| `applicationDeadline` | `"2026-02-01"` |
| `applicationDeadlineEpochMs` | `1738368000000` |
| `applicationDeadlineRaw` | `"01.02.2026"` |
| `lastModified` | `"2026-01-01T09:00:00.000Z"` |
| `lastModifiedEpochMs` | `1735722000000` |
| `employmentForm` | `"Fast"` |
| `employmentType` | `["FULL_TIME"]` |
| `employmentTypeRequested` | `"fulltime"` |
| `sector` | `"Privat"` |
| `industries` | `["Sample Industry A", "Sample Industry B"]` |
| `jobFunction` | `"Sample Function"` |
| `internalJobTitle` | `"Sample Internal Title"` |
| `workingLanguages` | `["Norsk", "Engelsk"]` |
| `contactPersons` | `[{ "name": "Jane Doe", "phones": ["+4700000000"], "emails": ["jane@example.com"] }]` |
| `keywords` | `["sample", "keyword", "tags"]` |
| `applyUrl` | `"https://example.com/apply/000"` |
| `descriptionHtml` | `"<p>Full HTML ad description goes here.</p>"` |
| `descriptionText` | `"Full ad description as plain text goes here."` |
| `breadcrumb` | `["FINN", "Jobb", "Søk", "Oslo"]` |
| `sponsored` | `false` |
| `scrapedAt` | `"2026-01-01T00:00:00.000Z"` |

### How to Use

#### 1) Search by keyword + location

```json
{
  "mode": "search",
  "queries": ["developer"],
  "location": "1.20001.20061",
  "employmentType": "fulltime",
  "maxPages": 5,
  "maxListings": 200,
  "fetchDetails": true
}
````

#### 2) Search multiple keywords with industry filter

```json
{
  "mode": "search",
  "queries": ["sykepleier", "lege", "fysioterapeut"],
  "employmentType": "fulltime",
  "industry": "9",
  "publishedSince": "7",
  "sortBy": "published_desc",
  "maxPages": 3,
  "maxListings": 150
}
```

#### 3) Search English-language management roles

```json
{
  "mode": "search",
  "queries": ["product manager"],
  "employmentType": "management",
  "workLanguage": "english",
  "sector": "private",
  "skipSponsored": true,
  "maxPages": 2
}
```

#### 4) URL mode (paste any Finn.no URL, including a single ad)

```json
{
  "mode": "url",
  "urls": [
    "https://www.finn.no/job/search?q=developer&extent=3947&location=1.20001.20061",
    "https://www.finn.no/job/search?extent=3942&location=0.22030",
    "https://www.finn.no/job/ad/460000000"
  ],
  "maxPages": 5,
  "maxListings": 250,
  "fetchDetails": true
}
```

### Input Parameters

| Parameter | Type | Default | Description |
|---|---|---|---|
| `mode` | enum | `search` | `search` (use builder fields) or `url` (paste URLs). |
| `queries` | array of strings | `["developer"]` | One search per keyword. Empty = browse without keyword filter. |
| `location` | string | empty | Finn.no hierarchical location code (e.g. `1.20001.20061` for Oslo, `1.20001.20015` for Vestland). Pick a filter on finn.no/job and copy from `?location=`. |
| `employmentType` | enum | `fulltime` | `any` / `fulltime` (Heltid, extent=3947) / `parttime` (Deltid, extent=3942) / `management` (Lederstillinger, manager\_role=6702). |
| `industry` | string | empty | Finn.no industry code from `?industry=`. |
| `occupation` | string | empty | Finn.no occupation/job-function code from `?occupation=`. |
| `sector` | enum | `any` | `any` / `private` / `public`. |
| `workLanguage` | enum | `any` | `any` / `norwegian` / `english` / `swedish` / `danish` / `other`. |
| `publishedSince` | enum | `any` | `any` / `1` / `3` / `7` / `14` / `30` (days). |
| `sortBy` | enum | `default` | `default` (relevance), `published_desc` (newest), `deadline_asc` (closest deadline). |
| `skipSponsored` | bool | `false` | Drop "Betalt plassering" cards (paid placements). |
| `urls` | array of strings | example URL | URL mode only. Each URL is paged forward independently. |
| `maxPages` | int | `2` | Max SERP pages per search (or per pasted URL). |
| `maxListings` | int | `0` | Cap across all searches. `0` = no cap. |
| `fetchDetails` | bool | `true` | Also fetch each ad's detail page for the full HTML description, deadline, sector, industries, contact persons, keywords, apply URL. |
| `proxy` | object | Apify Datacenter | Free-tier-friendly default. For higher volume or Norway-pinned routing, set `groups: ["RESIDENTIAL"], country: "NO"`. |

### Output Example

> Sample shape: values are illustrative placeholders, not from a live ad.

```json
{
  "id": "460000000",
  "idInt": 460000000,
  "url": "https://www.finn.no/job/ad/460000000",
  "title": "Sample Job Title",
  "subtitle": "Sample Subtitle Headline",
  "employer": "Sample Employer AS",
  "employerUrl": "http://www.example.com/",
  "employerHomepage": "http://www.example.com/",
  "employerLogo": "https://images.finncdn.no/dynamic/default/0000/0/0/000000_0000000000.png",
  "streetAddress": "Sample Street 1",
  "postalCode": "0000",
  "city": "Oslo",
  "addressCountry": "NO",
  "locationDisplay": "Oslo",
  "locationLink": "https://www.finn.no/job/search?location=1.20001.20061",
  "latitude": 59.9,
  "longitude": 10.7,
  "datePosted": "2026-01-01",
  "datePostedEpochMs": 1735689600000,
  "relativePosted": "2 dager siden",
  "applicationDeadline": "2026-02-01",
  "applicationDeadlineEpochMs": 1738368000000,
  "applicationDeadlineRaw": "01.02.2026",
  "lastModified": "2026-01-01T09:00:00.000Z",
  "lastModifiedEpochMs": 1735722000000,
  "employmentForm": "Fast",
  "employmentType": ["FULL_TIME"],
  "employmentTypeRequested": "fulltime",
  "sector": "Privat",
  "industries": ["Sample Industry A", "Sample Industry B"],
  "jobFunction": "Sample Function",
  "internalJobTitle": "Sample Internal Title",
  "workingLanguages": ["Norsk", "Engelsk"],
  "contactPersons": [
    { "name": "Jane Doe", "phones": ["+4700000000"], "emails": ["jane@example.com"] }
  ],
  "keywords": ["sample", "keyword", "tags"],
  "applyUrl": "https://example.com/apply/000",
  "descriptionHtml": "<p>Full HTML ad description goes here.</p>",
  "descriptionText": "Full ad description as plain text goes here.",
  "breadcrumb": ["FINN", "Jobb", "Søk", "Oslo"],
  "sponsored": false,
  "scrapedAt": "2026-01-01T00:00:00.000Z"
}
```

### Plan Requirement

This scraper runs on every Apify plan: the default `useApifyProxy: true` config uses the shared Datacenter pool that is available on Free and paid tiers alike. For larger runs, or if you see throttling, switch the proxy field to `{ useApifyProxy: true, apifyProxyGroups: ["RESIDENTIAL"], apifyProxyCountry: "NO" }` (Apify Starter or higher). You can also paste your own proxy URLs in the proxy field.

# Actor input Schema

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

Search mode = pick keywords + location + filters below. URL mode = paste any finn.no/job URL refined in a browser (recommended for filters not exposed below).

## `queries` (type: `array`):

Free-text search terms (e.g. "developer", "sykepleier", "prosjektleder"). One scrape per keyword; leave empty to browse without a keyword filter. Combine with location + employment type for narrower results.

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

Finn.no hierarchical location code from the URL ?location= param. Format is <level>.<country>.<region>\[.<municipality>]. Common values: 0.20001 (Norge, country-wide), 1.20001.20061 (Oslo), 1.20001.20003 (Akershus), 1.20001.20015 (Vestland), 1.20001.20016 (Trøndelag), 1.20001.20012 (Rogaland). The simplest way: open finn.no/job, click a location filter, and copy the code from the URL. Leave empty to search Norway-wide.

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

Filter by Finn.no employment scope: fulltime = Heltid (extent=3947), parttime = Deltid (extent=3942), management = Lederstillinger (manager\_role=6702). "any" walks the unfiltered /job/search page.

## `industry` (type: `string`):

Finn.no industry code (e.g. 14 = Barn, skole og undervisning; 11 = IT; 9 = Helse og omsorg; 6 = Bygg og anlegg; 1 = Akademi, forskning. Open a Finn.no SERP, pick an industry, and copy the code from ?industry=.

## `occupation` (type: `string`):

Finn.no occupation/job-function code from ?occupation=. More specific than industry. Look in a Finn.no SERP URL after picking a job function.

## `sector` (type: `string`):

Limit by employer sector.

## `workLanguage` (type: `string`):

Workplace working language. Maps to Finn.no ?workLanguage= filter.

## `publishedSince` (type: `string`):

Limit to ads posted within the last N days.

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

How Finn.no orders the SERP. "Default" is Finn's relevance ranking.

## `skipSponsored` (type: `boolean`):

Drop "Betalt plassering" cards (paid promotions). Applied after fetch as a client-side filter.

## `urls` (type: `array`):

One or more finn.no/job URLs. Examples: https://www.finn.no/job/search?q=developer or https://www.finn.no/job/ad/461652761 (single ad). Legacy /job/<type>/search.html URLs are auto-canonicalized to the working /job/search?extent=<N> form so pagination works. Multi-URL supported; each URL pages forward independently. Filter fields above are ignored.

## `maxPages` (type: `integer`):

Hard cap on how many SERP pages to walk per query × employment-type combination (or per pasted URL). Each page returns up to ~50 listings.

## `maxListings` (type: `integer`):

Stop after this many listings across all searches. 0 = no cap.

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

When ON, also fetch each ad's detail page for full HTML description, deadline, employer details, sector, industries, working languages, contact persons, keywords, and apply URL. SERP cards already carry id, title, employer, location, and posted date, so simple feeds work fine with this OFF. Default ON for richer output.

## `proxy` (type: `object`):

Finn.no accepts naked Apify proxy out of the box, including the default Datacenter group available on Free plans. For higher volume or stable Norwegian routing, add groups: \["RESIDENTIAL"], country: "NO".

## Actor input object example

```json
{
  "mode": "search",
  "queries": [
    "developer"
  ],
  "employmentType": "fulltime",
  "sector": "any",
  "workLanguage": "any",
  "publishedSince": "any",
  "sortBy": "default",
  "skipSponsored": false,
  "urls": [
    "https://www.finn.no/job/search?q=developer&extent=3947&location=1.20001.20061"
  ],
  "maxPages": 2,
  "maxListings": 0,
  "fetchDetails": true,
  "proxy": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `overview` (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 = {
    "queries": [
        "developer"
    ],
    "urls": [
        "https://www.finn.no/job/search?q=developer&extent=3947&location=1.20001.20061"
    ],
    "proxy": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("abotapi/finn-no-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 = {
    "queries": ["developer"],
    "urls": ["https://www.finn.no/job/search?q=developer&extent=3947&location=1.20001.20061"],
    "proxy": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("abotapi/finn-no-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 '{
  "queries": [
    "developer"
  ],
  "urls": [
    "https://www.finn.no/job/search?q=developer&extent=3947&location=1.20001.20061"
  ],
  "proxy": {
    "useApifyProxy": true
  }
}' |
apify call abotapi/finn-no-jobs-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Finn.no $0.8💰 URL | Keyword |  Deep Search Scraper",
        "description": "From $0.8/1K. Scrape active Finn.no ads via search builder or URL. Returns 30+ fields per ad, including full HTML description, employer details, deadline, contacts, languages, sector, industries, keywords, and apply URL.",
        "version": "1.4",
        "x-build-id": "4aEKHhpfss57JejhO"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/abotapi~finn-no-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-abotapi-finn-no-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/abotapi~finn-no-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-abotapi-finn-no-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/abotapi~finn-no-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-abotapi-finn-no-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",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "1. Search mode",
                        "enum": [
                            "search",
                            "url"
                        ],
                        "type": "string",
                        "description": "Search mode = pick keywords + location + filters below. URL mode = paste any finn.no/job URL refined in a browser (recommended for filters not exposed below).",
                        "default": "search"
                    },
                    "queries": {
                        "title": "Keywords (optional)",
                        "type": "array",
                        "description": "Free-text search terms (e.g. \"developer\", \"sykepleier\", \"prosjektleder\"). One scrape per keyword; leave empty to browse without a keyword filter. Combine with location + employment type for narrower results.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "location": {
                        "title": "Location code (optional)",
                        "type": "string",
                        "description": "Finn.no hierarchical location code from the URL ?location= param. Format is <level>.<country>.<region>[.<municipality>]. Common values: 0.20001 (Norge, country-wide), 1.20001.20061 (Oslo), 1.20001.20003 (Akershus), 1.20001.20015 (Vestland), 1.20001.20016 (Trøndelag), 1.20001.20012 (Rogaland). The simplest way: open finn.no/job, click a location filter, and copy the code from the URL. Leave empty to search Norway-wide."
                    },
                    "employmentType": {
                        "title": "Employment type",
                        "enum": [
                            "any",
                            "fulltime",
                            "parttime",
                            "management"
                        ],
                        "type": "string",
                        "description": "Filter by Finn.no employment scope: fulltime = Heltid (extent=3947), parttime = Deltid (extent=3942), management = Lederstillinger (manager_role=6702). \"any\" walks the unfiltered /job/search page.",
                        "default": "fulltime"
                    },
                    "industry": {
                        "title": "Industry filter (optional)",
                        "type": "string",
                        "description": "Finn.no industry code (e.g. 14 = Barn, skole og undervisning; 11 = IT; 9 = Helse og omsorg; 6 = Bygg og anlegg; 1 = Akademi, forskning. Open a Finn.no SERP, pick an industry, and copy the code from ?industry=."
                    },
                    "occupation": {
                        "title": "Occupation filter (optional)",
                        "type": "string",
                        "description": "Finn.no occupation/job-function code from ?occupation=. More specific than industry. Look in a Finn.no SERP URL after picking a job function."
                    },
                    "sector": {
                        "title": "Sector filter (optional)",
                        "enum": [
                            "any",
                            "private",
                            "public"
                        ],
                        "type": "string",
                        "description": "Limit by employer sector.",
                        "default": "any"
                    },
                    "workLanguage": {
                        "title": "Working language (optional)",
                        "enum": [
                            "any",
                            "norwegian",
                            "english",
                            "swedish",
                            "danish",
                            "other"
                        ],
                        "type": "string",
                        "description": "Workplace working language. Maps to Finn.no ?workLanguage= filter.",
                        "default": "any"
                    },
                    "publishedSince": {
                        "title": "Posted since (optional)",
                        "enum": [
                            "any",
                            "1",
                            "3",
                            "7",
                            "14",
                            "30"
                        ],
                        "type": "string",
                        "description": "Limit to ads posted within the last N days.",
                        "default": "any"
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "default",
                            "published_desc",
                            "deadline_asc"
                        ],
                        "type": "string",
                        "description": "How Finn.no orders the SERP. \"Default\" is Finn's relevance ranking.",
                        "default": "default"
                    },
                    "skipSponsored": {
                        "title": "Skip sponsored placements (post-filter)",
                        "type": "boolean",
                        "description": "Drop \"Betalt plassering\" cards (paid promotions). Applied after fetch as a client-side filter.",
                        "default": false
                    },
                    "urls": {
                        "title": "Search URLs (URL mode)",
                        "type": "array",
                        "description": "One or more finn.no/job URLs. Examples: https://www.finn.no/job/search?q=developer or https://www.finn.no/job/ad/461652761 (single ad). Legacy /job/<type>/search.html URLs are auto-canonicalized to the working /job/search?extent=<N> form so pagination works. Multi-URL supported; each URL pages forward independently. Filter fields above are ignored.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxPages": {
                        "title": "Max pages per search",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Hard cap on how many SERP pages to walk per query × employment-type combination (or per pasted URL). Each page returns up to ~50 listings.",
                        "default": 2
                    },
                    "maxListings": {
                        "title": "Max listings (total)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Stop after this many listings across all searches. 0 = no cap.",
                        "default": 0
                    },
                    "fetchDetails": {
                        "title": "Fetch detail pages (richer data)",
                        "type": "boolean",
                        "description": "When ON, also fetch each ad's detail page for full HTML description, deadline, employer details, sector, industries, working languages, contact persons, keywords, and apply URL. SERP cards already carry id, title, employer, location, and posted date, so simple feeds work fine with this OFF. Default ON for richer output.",
                        "default": true
                    },
                    "proxy": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Finn.no accepts naked Apify proxy out of the box, including the default Datacenter group available on Free plans. For higher volume or stable Norwegian routing, add groups: [\"RESIDENTIAL\"], country: \"NO\"."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
