Boligportal Data Parser & API
Boligportal is Denmark’s leading rental-listings portal — drawing an estimated ~5M+ monthly visits and carrying the country’s largest pool of private and agency rentals — and PropAPIS extracts its listings through a single REST API. Focused on the Danish lettings market, Boligportal exposes rent, size, rooms, deposit, and landlord data across apartments, houses, and rooms.
| Country | Denmark |
|---|---|
| Type | Portal |
| Owner | Boligportal.dk |
| Listing types | rental, short-let, room |
| Monthly visits | ~5M+ / mo (est.) |
| Active listings | ~10-20k rentals (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.boligportal.dk |
Platform Overview
Market Position
Boligportal is the dominant rental-listings portal in Denmark, aggregating private-landlord and agency rentals into the country’s largest lettings marketplace. It draws an estimated ~5M+ monthly visits, concentrated in the major university and metropolitan rental markets where demand is highest (SimilarWeb ).
- Denmark’s #1 Rental Portal: Largest lettings marketplace
- Private + Agency Rentals: Broad landlord coverage
- ~5M+ Monthly Visits (est.): Concentrated in major cities
- Rental-Focused Data: Rent, deposit, and tenancy fields
Market Coverage
Geographic Coverage:
- Denmark: All regions nationwide
- Major cities: Copenhagen, Aarhus, Odense, Aalborg, Esbjerg
- University towns with strong rental demand
Property Types:
- Apartments (Lejligheder)
- Houses (Huse / Villaer)
- Rooms (Værelser)
- Townhouses (Rækkehuse)
Data Fields Available
PropAPIS extracts a rich field set from each Boligportal listing:
Property Information
- Address: Property location with postcode
- Rent: Monthly rent (Husleje) in DKK
- Size: Square meters (Boligareal)
- Rooms: Number of rooms (Værelser)
- Property Type: Apartment, house, room, townhouse
- Floor: Floor level (Etage)
- Available From: Tenancy start date (Ledig fra)
Listing Details
- Description: Full property description (Danish)
- Features: Amenities and equipment
- Photos: Image URLs
- Energy Label: Energy efficiency rating (Energimærke) where listed
Landlord Information
- Landlord Type: Private individual or agency (Privat / Udlejer)
- Landlord Contact: Listing contact details
- Listing Reference: Portal reference number
Location Data
- Postcode: Danish postal code
- City and District: By and område
- Coordinates: Latitude and longitude
Financial Information
- Deposit: Security deposit (Depositum)
- Prepaid Rent: Forudbetalt husleje
- Utilities: Aconto utilities (Aconto)
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get rental by ID or URL
property_data = api.platforms.boligportal.get_property(
listing_id='4567890'
)
print(f"Address: {property_data.address}")
print(f"Rent: {property_data.rent:,} DKK/mo")
print(f"Size: {property_data.size_m2} m²")
print(f"Rooms: {property_data.rooms}")
print(f"Deposit: {property_data.deposit:,} DKK")Search Rental Properties
# Search rentals
rentals = api.platforms.boligportal.search_to_rent(
location='Copenhagen',
min_price=8000, # monthly rent
max_price=18000,
min_rooms=2,
property_type='Apartment'
)
for rental in rentals[:10]:
print(f"{rental.address} - {rental.rent:,} DKK/mo")
print(f" {rental.rooms} rooms | {rental.size_m2} m² | available {rental.available_from}")Search Rooms
# Search rooms for rent
rooms = api.platforms.boligportal.search_to_rent(
location='Aarhus',
max_price=6000,
property_type='Room'
)
for room in rooms[:5]:
print(f"{room.address} - {room.rent:,} DKK/mo")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.boligportal.get_property('4567890')
print(f"Rent: {property_data.rent:,} DKK/mo")
print(f"Size: {property_data.size_m2} m²")
print(f"Deposit: {property_data.deposit:,} DKK")For detailed documentation, see our API Reference.