# FINN.no car listings scraper

**Use case:** 

Scrape FINN.no car listings with prices, mileage, make, model, seller signals, images, and public vehicle specs.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.finn.no/mobility/search/car?sort=RELEVANCE"
    }
  ],
  "maxItems": 50,
  "includeDetails": true,
  "requestDelayMillis": 250
}
```

## Output

```json
{
  "listingId": {
    "label": "Listing ID"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "title": {
    "label": "Title"
  },
  "make": {
    "label": "Make"
  },
  "model": {
    "label": "Model"
  },
  "variant": {
    "label": "Variant"
  },
  "year": {
    "label": "Year"
  },
  "priceNok": {
    "label": "Price (NOK)"
  },
  "mileageKm": {
    "label": "Mileage (km)"
  },
  "fuel": {
    "label": "Fuel"
  },
  "gearbox": {
    "label": "Gearbox"
  },
  "location": {
    "label": "Location"
  },
  "sellerName": {
    "label": "Seller"
  },
  "sellerType": {
    "label": "Seller type"
  },
  "contactPhoneAvailable": {
    "label": "Phone visible"
  },
  "imageUrls": {
    "label": "Images"
  },
  "description": {
    "label": "Description"
  },
  "sourceSearchUrl": {
    "label": "Source search URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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