Finn.no Eiendom Data Parser & API
Finn.no Eiendom is the real-estate vertical of Norway’s dominant classifieds marketplace — part of a ~80M+ monthly-visit site total — and PropAPIS extracts its listings through a single REST API. Owned by Schibsted, Finn.no is Norway’s near-universal marketplace, and its Eiendom section carries essentially all agent-listed homes nationwide, exposing price, size, rooms, energy class, and agent data.
| Country | Norway |
|---|---|
| Type | Marketplace |
| Owner | Schibsted |
| Listing types | resale, rental, new-build, commercial |
| Monthly visits | ~80M+ / mo site total (eiendom subset) |
| Active listings | ~60-90k eiendom (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.finn.no/realestate |
Platform Overview
Market Position
Finn.no (owned by Schibsted) is the overwhelmingly dominant online marketplace in Norway, where almost all property transactions are advertised. Its Eiendom (real-estate) vertical is the de-facto national listings standard, drawing from a site total estimated at ~80M+ monthly visits in a country of ~5.5M people — exceptional per-capita penetration (SimilarWeb ).
- Norway’s #1 Marketplace: Near-universal property advertising
- Eiendom Vertical: De-facto national listings standard
- ~80M+ Monthly Visits (site total): Eiendom is a major subset
- Schibsted-Owned: Nordic classifieds heritage
Market Coverage
Geographic Coverage:
- Norway: All counties (fylker) nationwide
- Major cities: Oslo, Bergen, Trondheim, Stavanger, Tromsø
- Coastal, fjord, and rural markets
Property Types:
- Apartments (Leiligheter)
- Houses (Eneboliger)
- Cabins and holiday homes (Hytter)
- Commercial property (Næringseiendom)
Data Fields Available
PropAPIS extracts a rich field set from each Finn.no Eiendom listing:
Property Information
- Address: Property location with postcode
- Price: Asking price (Prisantydning) in NOK
- Size: Usable area in square meters (Bruksareal / P-rom)
- Rooms: Number of rooms (Rom)
- Bedrooms: Number of bedrooms (Soverom)
- Property Type: Apartment, house, cabin, commercial
- Floor: Floor level (Etasje)
- Price per m²: Calculated price per square meter
Listing Details
- Description: Full property description (Norwegian)
- Features: Amenities and equipment
- Photos: Image URLs
- Energy Class: Energy efficiency rating (Energimerking)
Agent Information
- Estate Agent: Agency name (Megler)
- Agent Contact: Office contact details
- Agent Reference: Listing reference number (FINN-kode)
Location Data
- Postcode: Norwegian postal code
- Municipality and Area: Kommune and område
- Coordinates: Latitude and longitude
Financial Information
- Joint Debt: Share of building debt (Fellesgjeld)
- Common Cost: Monthly shared cost (Felleskostnader)
- Total Price: Price including joint debt (Totalpris)
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get property by FINN-kode or URL
property_data = api.platforms.finn.get_property(
listing_id='345678901'
)
print(f"Address: {property_data.address}")
print(f"Price: {property_data.price:,} NOK")
print(f"Size: {property_data.size_m2} m²")
print(f"Rooms: {property_data.rooms}")
print(f"Energy Class: {property_data.energy_class}")Search For Sale Listings
# Search properties for sale
listings = api.platforms.finn.search_for_sale(
location='Oslo',
min_price=3000000,
max_price=8000000,
min_rooms=2,
property_type='Apartment'
)
for listing in listings[:10]:
print(f"{listing.address} - {listing.price:,} NOK")
print(f" {listing.rooms} rooms | {listing.size_m2} m² | {listing.price_per_m2:,.0f} NOK/m²")Search Rental Properties
# Search rental properties
rentals = api.platforms.finn.search_to_rent(
location='Bergen',
min_price=10000, # monthly rent
max_price=25000,
min_rooms=2
)
for rental in rentals[:5]:
print(f"{rental.address} - {rental.price:,} NOK/mo")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.finn.get_property('345678901')
print(f"Price: {property_data.price:,} NOK")
print(f"Size: {property_data.size_m2} m²")
print(f"Price per m²: {property_data.price_per_m2:,.0f} NOK")For detailed documentation, see our API Reference.