Pararius Data Parser & API
Pararius is the Netherlands’ leading rental portal — with ~100k+ active rental listings and a strong expat focus — and PropAPIS extracts its listings through a single REST API. While Funda dominates Dutch for-sale stock, Pararius owns the expat lettings niche with an English-first experience, exposing rent, size, rooms, deposit, and agent data.
| Country | Netherlands |
|---|---|
| Type | Portal |
| Owner | Pararius B.V. |
| Listing types | rental, short-let, room |
| Monthly visits | ~6M+ / mo (est.) |
| Active listings | ~100k+ rentals |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.pararius.com |
Platform Overview
Market Position
Pararius is the Netherlands’ largest dedicated rental portal and the go-to platform for the expat lettings market, with a fully English-first experience. While Funda dominates Dutch for-sale listings, Pararius leads on rentals with ~100k+ active listings and an estimated ~6M+ monthly visits, concentrated in the Randstad cities (Pararius ).
- Netherlands’ #1 Rental Portal: Leads on lettings stock
- Expat-Focused: English-first listings and search
- ~100k+ Active Rentals: Strong Randstad coverage
- Rental-Specialist Data: Rent, deposit, and interior fields
Market Coverage
Geographic Coverage:
- Netherlands: All provinces nationwide
- Randstad cities: Amsterdam, Rotterdam, The Hague, Utrecht
- University cities: Leiden, Groningen, Eindhoven
Property Types:
- Apartments (Appartementen)
- Houses (Woonhuizen)
- Rooms (Kamers)
- Studios
Data Fields Available
PropAPIS extracts a rich field set from each Pararius listing:
Property Information
- Address: Property location with postcode
- Rent: Monthly rent (Huurprijs) in EUR
- Size: Square meters (Woonoppervlakte)
- Rooms: Number of rooms (Kamers)
- Bedrooms: Number of bedrooms (Slaapkamers)
- Property Type: Apartment, house, room, studio
- Interior: Furnishing level (Gemeubileerd / Gestoffeerd / Kaal)
- Available From: Tenancy start date (Beschikbaar vanaf)
Listing Details
- Description: Full property description (English/Dutch)
- Features: Amenities and equipment
- Photos: Image URLs
- Energy Label: Energy efficiency rating (Energielabel)
Agent Information
- Estate Agent: Agency name (Makelaar)
- Agent Contact: Office contact details
- Agent Reference: Listing reference number
Location Data
- Postcode: Dutch postal code
- City and Neighborhood: Stad and wijk
- Coordinates: Latitude and longitude
Financial Information
- Deposit: Security deposit (Borg)
- Service Costs: Monthly service charges (Servicekosten)
- Interior context: Furnished vs unfurnished pricing
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.pararius.get_property(
listing_id='apartment-amsterdam-1234567'
)
print(f"Address: {property_data.address}")
print(f"Rent: €{property_data.rent:,}/mo")
print(f"Size: {property_data.size_m2} m²")
print(f"Rooms: {property_data.rooms}")
print(f"Interior: {property_data.interior}")Search Rental Properties
# Search rentals
rentals = api.platforms.pararius.search_to_rent(
location='Amsterdam',
min_price=1200, # monthly rent
max_price=2800,
min_rooms=2,
property_type='Apartment'
)
for rental in rentals[:10]:
print(f"{rental.address} - €{rental.rent:,}/mo")
print(f" {rental.rooms} rooms | {rental.size_m2} m² | {rental.interior}")Search Rooms
# Search rooms for rent
rooms = api.platforms.pararius.search_to_rent(
location='Utrecht',
max_price=900,
property_type='Room'
)
for room in rooms[:5]:
print(f"{room.address} - €{room.rent:,}/mo")Quick Start
Python
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
property_data = api.platforms.pararius.get_property('apartment-amsterdam-1234567')
print(f"Rent: €{property_data.rent:,}/mo")
print(f"Size: {property_data.size_m2} m²")
print(f"Interior: {property_data.interior}")For detailed documentation, see our API Reference.