Skip to Content

Finn.no Data Parser & API

Finn.no is Norway’s #1 marketplace — the country’s dominant classifieds platform — and its motors section carries deep private and dealer car listings that Carapis extracts through one REST API. Owned by Vend (the rebranded Schibsted Marketplaces), Finn.no is the definitive source of Norwegian used-car data, and Carapis serves it without you building a scraper.

CountryNorway
TypeClassifieds
OwnerVend (Schibsted)
Vehicle typesused, new, private, dealer
Monthly visitsvery high (NO #1 marketplace)
Active listingslarge
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitewww.finn.no

What is Finn.no?

Finn.no is the leading classifieds marketplace in Norway, owned by Vend (Schibsted Marketplaces). Its motors vertical is the country’s primary car marketplace, covering used and new vehicles from both private sellers and dealers. As Norway’s #1 marketplace, Finn.no is the definitive structured source of Norwegian car data, sharing a common Nordic architecture with Blocket, Bilbasen and DBA.

Market Position

Finn.no is Norway’s dominant marketplace and the centre of its used-car market, part of Vend’s Nordic network (~325M monthly visits group-wide, all categories). Its standout asset is the breadth of its private and dealer car inventory — effectively the whole Norwegian market in one place — making it the single most complete source of Norwegian used-car supply and pricing.

Data Fields Available

Carapis extracts a structured record from each Finn.no car listing:

  • Vehicle identity — make, model, model year
  • Specification — fuel type, transmission
  • Condition — mileage
  • Pricing — listed price
  • Listing contextseller type (private vs dealer), location, photo gallery

The combined private-and-dealer depth and seller-type flag make Finn.no the fullest single window into the Norwegian market.

API Quick Start

import requests resp = requests.get( "https://api.carapis.com/v2/listings", params={"source": "finn-no", "limit": 20}, headers={"Authorization": f"Bearer {API_KEY}"}, ) for car in resp.json()["results"]: print(car["make"], car["model"], car["year"], car["price"])

Get an API key at my.carapis.com  and see the full API reference. Pricing is on the pricing page.

Use Cases

  • Market research — the most complete view of the Norwegian used-car market. See market research.
  • Pricing intelligence — private and dealer asking prices feed market-pricing models for dealers.
  • Import / export — source Norwegian vehicles, including private stock, remotely. See import & export.

Frequently asked questions