MyHome.ge Data Parser & API
MyHome.ge is Georgia’s #1 real-estate portal — ~463-584K monthly visits and the clear market leader — and PropAPIS extracts its sale, rental and new-build listings through a single REST API. Georgia is a small market with low-to-medium anti-bot, making MyHome.ge a high value-to-effort target.
| Country | Georgia |
|---|---|
| Type | Portal |
| Owner | MyHome.ge |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | ~463-584K / mo |
| Active listings | #1 GE RE |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.myhome.ge |
Platform Overview
Market Position
MyHome.ge is the #1 real-estate portal in Georgia, drawing ~463-584K monthly visits (SimilarWeb / Semrush, Mar 2026) — ahead of the #2 marketplace ss.ge (~404K/mo) and the smaller Place.ge and Home.ge. As a dedicated RE portal in a small, low-anti-bot market, it offers clean structured listing data (price, area, rooms, building year, geo) at a high value-to-effort ratio.
Coverage
- Georgia (Tbilisi, Batumi and 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 MyHome.ge 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 MyHome.ge listing by URL
listing = api.platforms.myhome_ge.get_listing(
url='https://www.myhome.ge/en/pr/...'
)
print(f"Price: {listing.price:,} USD")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")Search Listings
# Search MyHome.ge listings
results = api.platforms.myhome_ge.search(
city='Tbilisi',
listing_type='sale',
min_price=30000,
max_price=150000,
min_rooms=2,
)
for item in results[:10]:
print(f"{item.address} - {item.price:,} USD ({item.area} m²)")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
listing = api.platforms.myhome_ge.get_listing(
url='https://www.myhome.ge/en/pr/...'
)
print(f"Price: {listing.price:,} USD")
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.myhomeGe.getListing({
url: 'https://www.myhome.ge/en/pr/...',
});
console.log(`Price: ${listing.price} USD`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/myhome-ge/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.myhome.ge/en/pr/..."