Bezrealitky Data Parser & API
Bezrealitky is the Czech Republic’s owner-to-owner real-estate portal — ~1.16M monthly visits, with listings posted directly by owners and no agents — and PropAPIS extracts its sale and rental listings through a single REST API. Its agent-free model means listings carry direct-owner contact rather than agency attribution.
| Country | Czech Republic |
|---|---|
| Type | Portal |
| Owner | Bezrealitky |
| Listing types | resale, rental |
| Monthly visits | ~1.16M / mo |
| Active listings | Moderate |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.bezrealitky.cz |
Platform Overview
Market Position
Bezrealitky (literally “without agencies”) drew ~1.16M monthly visits (Mar 2026) and is the Czech market’s main owner-to-owner portal — it deliberately excludes real-estate agents, so every listing is posted by the property owner. That gives it a distinctive dataset: direct-owner inventory without agency markup or duplicated agent relistings, the cleanest “for-sale-by-owner” signal in the CZ market behind the dominant Sreality (~7.6M/mo).
Coverage
- Czech Republic (Prague, Brno and major cities)
- Resale and long-term rental
- Owner-direct listings (no agents)
Data Fields Available
PropAPIS extracts the structured listing data Bezrealitky exposes:
Property Information
- Address and location
- Price (asking price or rent)
- Area (m²)
- Rooms: number of rooms (CZ “dispozice”, e.g. 2+kk)
- Floor and total floors
- Building year
- Property type
Listing Details
- Description: full listing text
- Photos: image URLs
- Geo: latitude and longitude
- Listing type: sale, rental
Owner Information
- Owner contact (direct, no agency)
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a single Bezrealitky listing by URL
listing = api.platforms.bezrealitky.get_listing(
url='https://www.bezrealitky.cz/nemovitosti-byty-domy/...'
)
print(f"Price: {listing.price:,} CZK")
print(f"Area: {listing.area} m²")
print(f"Disposition: {listing.rooms}")Search Listings
# Search Bezrealitky listings
results = api.platforms.bezrealitky.search(
city='Praha',
listing_type='rental',
min_price=15000,
max_price=40000,
)
for item in results[:10]:
print(f"{item.address} - {item.price:,} CZK ({item.area} m²)")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
listing = api.platforms.bezrealitky.get_listing(
url='https://www.bezrealitky.cz/nemovitosti-byty-domy/...'
)
print(f"Price: {listing.price:,} CZK")
print(f"Area: {listing.area} m²")
print(f"Disposition: {listing.rooms}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
const listing = await api.platforms.bezrealitky.getListing({
url: 'https://www.bezrealitky.cz/nemovitosti-byty-domy/...',
});
console.log(`Price: ${listing.price} CZK`);
console.log(`Area: ${listing.area} m²`);
console.log(`Disposition: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/bezrealitky/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.bezrealitky.cz/nemovitosti-byty-domy/..."