XE.gr Data Parser & API
XE.gr is Greece’s #2 real-estate portal — ~3.6M monthly visits and a sibling of Spitogatos under the Real Web group — and PropAPIS extracts its sale, rental and commercial listings through a single REST API. Sharing a corporate parent with Spitogatos, XE.gr fits the same Greek-market field model.
| Country | Greece |
|---|---|
| Type | Portal |
| Owner | Real Web SA |
| Listing types | resale, rental, commercial, land |
| Monthly visits | ~3.62M / mo |
| Active listings | Large |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.xe.gr |
Platform Overview
Market Position
XE.gr draws ~3.62M monthly visits (Semrush, Feb 2026), making it the #2 real-estate portal in Greece behind Spitogatos (~5.2M/mo). Both portals sit under Real Web SA — the parent of Italy’s Immobiliare.it and the Balkans Indomio network — so XE.gr is effectively a Real Web group sibling of Spitogatos.
Real Web group cluster
Because XE.gr and Spitogatos share the Real Web parent, the two Greek portals follow consistent listing schemas. A single PropAPIS field model therefore spans both, and extends to the Indomio network across the Western Balkans — one integration pattern for the whole Real Web family.
Coverage
- Greece (Athens, Thessaloniki, islands)
- Resale, long-term rental, commercial and land
- Agency attribution on listings
Data Fields Available
PropAPIS extracts the structured listing data XE.gr 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, commercial, land
Agency Information
- 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 XE.gr listing by URL
listing = api.platforms.xe.get_listing(
url='https://www.xe.gr/property/...'
)
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 XE.gr listings
results = api.platforms.xe.search(
city='Athens',
listing_type='sale',
min_price=80000,
max_price=300000,
min_area=50,
)
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.xe.get_listing(
url='https://www.xe.gr/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.xe.getListing({
url: 'https://www.xe.gr/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/xe/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.xe.gr/property/..."