Storia.ro Data Parser & API
Storia.ro is Romania’s #1 real-estate portal — the OLX Group sibling of Otodom, with ~3.3M monthly visits and the country’s largest RE network — and PropAPIS extracts its sale, rental and new-build listings through a single REST API. Built on the same platform lineage as Otodom, Storia exposes a clean structured schema (geo, area, rooms, building year, agent).
| Country | Romania |
|---|---|
| Type | Portal |
| Owner | OLX Group |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | ~3.34M / mo |
| Active listings | Largest RE network in RO (with OLX) |
| API access | No public API (parse-only) |
| Parse priority | ★★★★★ |
| Official site | www.storia.ro |
Platform Overview
Market Position
Storia.ro is the #1 Romanian real-estate portal by BRAT 2025 audience measurement and draws ~3.34M monthly visits (Semrush, Mar 2026). Together with OLX Imobiliare it forms the largest real-estate network in Romania; OLX Group’s RE division grew ~23% year-over-year in 2025.
OLX Group cluster
Storia.ro and Otodom (Poland) are both OLX Group platforms built on a shared lineage. A single PropAPIS integration spans this OLX/Storia portal family across Poland and Romania — the same field model and extraction pattern carry across both markets, with Otodim extending the same playbook into Ukraine.
Coverage
- Nationwide Romania coverage (Bucharest plus all major cities)
- New-build (primary market), resale, long- and short-term rental
- Commercial property and land
- Agent and agency attribution on listings
Data Fields Available
PropAPIS extracts the structured listing data Storia.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
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 Storia.ro listing by URL
listing = api.platforms.storia.get_listing(
url='https://www.storia.ro/ro/oferta/...'
)
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 Storia.ro listings
results = api.platforms.storia.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.storia.get_listing(
url='https://www.storia.ro/ro/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.storia.getListing({
url: 'https://www.storia.ro/ro/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/storia/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.storia.ro/ro/oferta/..."