Indomio Data Parser & API
Indomio is the Spitogatos / Real Web portal network across the Balkans — operating under one brand on .rs, .hr, .bg, .me, .si and more — and PropAPIS extracts its resale, rental and commercial listings on a single shared schema via one REST API. One integration spans every Indomio country site at once.
| Country | Balkans (RS/HR/BG/ME/SI) |
|---|---|
| Type | Portal |
| Owner | Spitogatos / Real Web |
| Listing types | resale, rental, commercial, land |
| Monthly visits | Per-country small-mid |
| Active listings | Aggregated |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.indomio.rs |
Platform Overview
Market Position
Indomio is the Balkans portal network run by Greece’s Spitogatos (owned by Real Web SA, the group behind Italy’s Immobiliare.it). It operates per-country sites — Indomio.rs (Serbia), Indomio.hr (Croatia, which absorbed ex-Axel-Springer traffic), Indomio.bg (Bulgaria), Indomio.me (Montenegro), Indomio.si (Slovenia) and others — each small-to-mid in traffic individually, but unified by one shared listing schema.
Spitogatos / Real Web cluster
Because every Indomio country site runs on the same Real Web platform as Spitogatos and XE.gr in Greece, a single PropAPIS integration and field model covers the entire Indomio Balkan network plus the Greek flagships. Spitogatos Network runs a unified property index (price-per-area indices) across these markets — a consistent schema that is well-suited to AVM-style resale analytics.
Coverage
- Balkans: Serbia, Croatia, Bulgaria, Montenegro, Slovenia and more
- Resale, long-term rental
- Commercial property and land
- Agent and agency attribution; shared price-per-area indices
Data Fields Available
PropAPIS extracts the structured listing data Indomio exposes:
Property Information
- Address and location
- Price (asking price or rent)
- Price per m² (network index)
- 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
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 Indomio listing by URL (any country domain)
listing = api.platforms.indomio.get_listing(
url='https://www.indomio.rs/en/property/...'
)
print(f"Price: {listing.price:,} EUR")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")Search Listings
# Search Indomio listings (specify country)
results = api.platforms.indomio.search(
country='rs',
city='Beograd',
listing_type='sale',
min_price=50000,
max_price=250000,
)
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.indomio.get_listing(
url='https://www.indomio.rs/en/property/...'
)
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.indomio.getListing({
url: 'https://www.indomio.rs/en/property/...',
});
console.log(`Price: ${listing.price} EUR`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/indomio/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.indomio.rs/en/property/..."