City24 Data Parser & API
City24 is the real-estate leader across Latvia and Estonia — part of the LSE-listed Baltic Classifieds Group — and PropAPIS extracts its sale, rental and new-build listings through a single REST API. Because City24 shares a corporate parent (and schema patterns) with Aruodas.lt, one Baltic Classifieds Group integration spans Latvia, Estonia and Lithuania.
| Country | Latvia & Estonia |
|---|---|
| Type | Portal |
| Owner | Baltic Classifieds Group |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | RE-specific leader (LV/EE) |
| Active listings | Large |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.city24.lv |
Platform Overview
Market Position
City24 operates the dedicated real-estate vertical for Latvia and Estonia (.lv / .ee) and is the RE-specific leader in those markets. It is part of the Baltic Classifieds Group (BCG), an LSE-listed operator whose H1-2026 real-estate revenue reached €13.2M, up 20% YoY — a healthy, well-structured segment under one corporate parent.
Baltic Classifieds Group cluster
City24 (Latvia/Estonia) shares its parent — and listing schema patterns — with Aruodas.lt (Lithuania leader) and KV.ee (Estonia). A single PropAPIS integration therefore covers the Baltic Classifieds Group family across Latvia, Estonia and Lithuania, with the same field model carrying across all three markets.
Coverage
- Latvia and Estonia (Riga, Tallinn and major cities)
- New-build (primary market), resale, long-term rental, commercial
- Land
- Agency attribution on listings
Data Fields Available
PropAPIS extracts the structured listing data City24 exposes:
Property Information
- Address and location
- Price (asking price or rent)
- Area (m²)
- Rooms: number of rooms
- 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, new-build, commercial
Agency Information
- Agency name
- Contact details (where exposed)
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a single City24 listing by URL
listing = api.platforms.city24.get_listing(
url='https://www.city24.lv/...'
)
print(f"Price: {listing.price:,} EUR")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")
print(f"City: {listing.city}")Search Listings
# Search City24 listings
results = api.platforms.city24.search(
city='Riga',
listing_type='sale',
min_price=50000,
max_price=200000,
min_rooms=2,
)
for item in results[:10]:
print(f"{item.address} - {item.price:,} EUR ({item.area} m²)")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
listing = api.platforms.city24.get_listing(
url='https://www.city24.lv/...'
)
print(f"Price: {listing.price:,} EUR")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
const listing = await api.platforms.city24.getListing({
url: 'https://www.city24.lv/...',
});
console.log(`Price: ${listing.price} EUR`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/city24/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.city24.lv/..."