OLX.ro Data Parser & API
OLX.ro is Romania’s OLX Group classifieds marketplace — ~26M monthly visits across all categories, with a large real-estate section — and PropAPIS extracts its resale, rental, commercial and land listings through a single REST API. Together with sibling Storia.ro it forms the largest real-estate network in Romania.
| Country | Romania |
|---|---|
| Type | Marketplace |
| Owner | OLX Group |
| Listing types | resale, rental, commercial, land |
| Monthly visits | ~26M / mo (all-category) |
| Active listings | Large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.olx.ro |
Platform Overview
Market Position
OLX.ro is the Romanian arm of the OLX Group classifieds marketplace, drawing ~26M monthly visits all-category (Dec 2025). Its real-estate vertical (OLX Imobiliare), combined with the dedicated portal Storia.ro, forms the largest real-estate network in Romania — OLX Group’s RE division grew ~23% YoY in 2025. OLX.ro carries broad consumer-posted inventory, complementing Storia’s agency-led listings.
OLX Group cluster
OLX.ro shares an owner with Storia.ro (Romania’s #1 dedicated portal) and the wider OLX/Otodom platform family (Otodom in Poland, Otodim in Ukraine). A single PropAPIS integration pattern spans this OLX/Storia portal family, so the same field model carries across Romania and the broader cluster.
Coverage
- Nationwide Romania coverage
- Resale, long-term rental
- Commercial property and land
- Consumer- and agency-posted listings
Data Fields Available
PropAPIS extracts the structured listing data OLX.ro exposes:
Property Information
- Address and location
- Price (asking price or rent)
- Area (m²)
- Rooms: number of rooms
- Floor and total floors
- Property type
Listing Details
- Description: full listing text
- Photos: image URLs
- Geo: latitude and longitude
- Listing type: sale, rental, commercial
Seller Information
- Seller / 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 OLX.ro listing by URL
listing = api.platforms.olx_ro.get_listing(
url='https://www.olx.ro/d/oferta/...'
)
print(f"Price: {listing.price:,} EUR")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")Search Listings
# Search OLX.ro listings
results = api.platforms.olx_ro.search(
city='București',
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.olx_ro.get_listing(
url='https://www.olx.ro/d/oferta/...'
)
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.olxRo.getListing({
url: 'https://www.olx.ro/d/oferta/...',
});
console.log(`Price: ${listing.price} EUR`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/olx-ro/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.olx.ro/d/oferta/..."