# FINN.no developer jobs scraper

**Use case:** 

Scrape recent FINN.no developer job listings with company, location, deadline, salary, easy-apply, and listing URLs.

## Input

```json
{
  "query": "developer",
  "startUrls": [
    {
      "url": "https://www.finn.no/job/search?q=sykepleier&sort=PUBLISHED_DESC"
    }
  ],
  "maxItems": 25,
  "sort": "PUBLISHED_DESC",
  "includeDetails": true
}
```

## Output

```json
{
  "adId": {
    "label": "Ad ID",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "applicationDeadline": {
    "label": "Deadline",
    "format": "text"
  },
  "salary": {
    "label": "Salary",
    "format": "text"
  },
  "easyApply": {
    "label": "Easy apply",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [FINN.no Jobs Scraper](https://apify.com/automation-lab/finn-no-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/finn-no-jobs-scraper) to learn more, explore other use cases, and run it yourself.