Skip to Content

DOM.RIA Data Parser & API

DOM.RIA is one of Ukraine’s top-2 real-estate portals — part of the RIA group and known for photo-verified, inspected listings — and PropAPIS extracts its sale, rental and new-build listings through a single REST API. Its verification layer makes DOM.RIA one of the higher-trust data sources in the region.

CountryUkraine
TypePortal
OwnerRIA group
Listing typesnew-build, resale, rental, commercial
Monthly visits~several M / mo
Active listingsLarge; verified listings
API accessUnofficial API only
Parse priority★★★★☆
Official sitedom.ria.com

Platform Overview

Market Position

DOM.RIA is a top-2 real-estate portal in Ukraine (SimilarWeb, Nov 2025), drawing several million monthly visits. Together with OLX.ua, the RIA and OLX platforms account for roughly 84% of Ukrainian real-estate deals. Despite the war, the OLX/RIA classifieds ecosystem recovered to about 92% of pre-war activity by 2025.

DOM.RIA is notable for verified/inspected listings — a photo-verification program that confirms a property was physically inspected, giving the data higher trust than a typical free-form classifieds feed.

Coverage

  • Ukraine (Kyiv and major cities)
  • New-build (primary market), resale, long-term rental, commercial
  • Verified (inspected) listing flag
  • Agent and agency attribution on listings

Data Fields Available

PropAPIS extracts the structured listing data DOM.RIA 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
  • Verified (inspected) flag

Listing Details

  • Description: full listing text
  • Photos: image URLs
  • Geo: latitude and longitude
  • Listing type: sale, rental, new-build, commercial

Agent Information

  • Agent name
  • 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 DOM.RIA listing by URL listing = api.platforms.dom_ria.get_listing( url='https://dom.ria.com/uk/realty-...' ) print(f"Price: {listing.price:,} USD") print(f"Area: {listing.area} m²") print(f"Rooms: {listing.rooms}") print(f"Verified: {listing.verified}")

Search Listings

# Search DOM.RIA listings results = api.platforms.dom_ria.search( city='Kyiv', listing_type='sale', min_price=30000, max_price=150000, min_rooms=2, ) for item in results[:10]: print(f"{item.address} - {item.price:,} USD ({item.area} m²)")

Quick Start

from propapis import PropAPIS api = PropAPIS(api_key='your_api_key') listing = api.platforms.dom_ria.get_listing( url='https://dom.ria.com/uk/realty-...' ) print(f"Price: {listing.price:,} USD") 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.domRia.getListing({ url: 'https://dom.ria.com/uk/realty-...', }); console.log(`Price: ${listing.price} USD`); console.log(`Area: ${listing.area} m²`); console.log(`Rooms: ${listing.rooms}`);
curl https://api.propapis.com/v1/platforms/dom-ria/listing \ -H "Authorization: Bearer your_api_key" \ -G --data-urlencode "url=https://dom.ria.com/uk/realty-..."

Frequently asked questions