Skip to Content

ss.ge Data Parser & API

ss.ge is Georgia’s #2 general classifieds marketplace — ~404K monthly visits with a large real-estate section — and PropAPIS extracts its resale, rental and commercial listings through a single REST API. Its low anti-bot difficulty makes it an easy complement to MyHome.ge for full Georgian coverage.

CountryGeorgia
TypeMarketplace
Ownerss.ge
Listing typesresale, rental, commercial, land
Monthly visits~404K / mo
Active listingsLarge general + RE
API accessNo public API (parse-only)
Parse priority★★★☆☆
Official sitess.ge

Platform Overview

Market Position

ss.ge is a general classifieds marketplace and the #2 real-estate destination in Georgia, drawing ~404K monthly visits (Semrush, Mar 2026) — behind the dedicated leader MyHome.ge (~463-584K/mo). As a horizontal marketplace it carries broad consumer-posted inventory across resale, rental and commercial property, and its low anti-bot profile makes it a straightforward extraction target that complements MyHome.ge.

Coverage

  • Georgia (Tbilisi, Batumi and major cities)
  • Resale and long-term rental
  • Commercial property and land
  • Consumer- and agency-posted listings

Data Fields Available

PropAPIS extracts the structured listing data ss.ge 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 ss.ge listing by URL listing = api.platforms.ss_ge.get_listing( url='https://ss.ge/en/real-estate/...' ) print(f"Price: {listing.price:,} USD") print(f"Area: {listing.area} m²") print(f"Rooms: {listing.rooms}")

Search Listings

# Search ss.ge listings results = api.platforms.ss_ge.search( city='Tbilisi', listing_type='rental', min_price=300, max_price=1500, 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.ss_ge.get_listing( url='https://ss.ge/en/real-estate/...' ) 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.ssGe.getListing({ url: 'https://ss.ge/en/real-estate/...', }); console.log(`Price: ${listing.price} USD`); console.log(`Area: ${listing.area} m²`); console.log(`Rooms: ${listing.rooms}`);
curl https://api.propapis.com/v1/platforms/ss-ge/listing \ -H "Authorization: Bearer your_api_key" \ -G --data-urlencode "url=https://ss.ge/en/real-estate/..."

Frequently asked questions