Imobiliare.ro Data Parser & API
Imobiliare.ro is Romania’s legacy real-estate incumbent — ~1.87M monthly visits and a deep historical listing inventory — and PropAPIS extracts its sale, rental and new-build listings through a single REST API. It is the #2-3 portal behind Storia.ro and a long-running independent source of Romanian property data.
| Country | Romania |
|---|---|
| Type | Portal |
| Owner | Imobiliare.ro |
| Listing types | new-build, resale, rental, commercial |
| Monthly visits | ~1.87M / mo |
| Active listings | Large legacy inventory |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.imobiliare.ro |
Platform Overview
Market Position
Imobiliare.ro draws ~1.87M monthly visits (Semrush, Mar 2026) and is the legacy incumbent of the Romanian market, ranking #2-3 behind Storia.ro (the OLX Group leader, #1 by BRAT 2025). Its long operating history gives it a large legacy inventory — a deep pool of resale, new-build, rental and commercial listings across Romania.
Because Storia.ro leads the same market, a Romanian data strategy often pairs both portals: Storia for OLX-group reach and Imobiliare.ro for independent legacy depth.
Coverage
- Romania (Bucharest, Cluj, Timișoara and major cities)
- New-build (primary market), resale, long-term rental, commercial
- Agent and agency attribution on listings
Data Fields Available
PropAPIS extracts the structured listing data Imobiliare.ro 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
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 Imobiliare.ro listing by URL
listing = api.platforms.imobiliare_ro.get_listing(
url='https://www.imobiliare.ro/vanzare-apartamente/...'
)
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 Imobiliare.ro listings
results = api.platforms.imobiliare_ro.search(
city='Bucuresti',
listing_type='sale',
min_price=60000,
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.imobiliare_ro.get_listing(
url='https://www.imobiliare.ro/vanzare-apartamente/...'
)
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.imobiliareRo.getListing({
url: 'https://www.imobiliare.ro/vanzare-apartamente/...',
});
console.log(`Price: ${listing.price} EUR`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/imobiliare-ro/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.imobiliare.ro/vanzare-apartamente/..."