Cian Data Parser & API
Cian (Циан) is Russia’s #1 dedicated real-estate portal — ~33M monthly visits and the region’s richest RE fields, including price history, developer dossiers and mortgage data — and PropAPIS models its sale, rental and new-build listings via a single REST API. Note that Russian data access is region- and sanctions-limited; see the access note below.
| Country | Russia |
|---|---|
| Type | Portal |
| Owner | Cian (MOEX-listed) |
| Listing types | new-build, resale, rental, commercial |
| Monthly visits | ~33.4M / mo |
| Active listings | ~242k new-build, large resale |
| API access | Partial / limited API |
| Parse priority | ★★★★★ |
| Official site | www.cian.ru |
Platform Overview
Market Position
Cian is the #1 dedicated real-estate portal in Russia, with ~33.4M monthly visits (SimilarWeb, Apr 2026, down ~4.6% month-over-month) and roughly 242k new-build listings plus a large resale pool. Having IPO’d on the NYSE in 2021 before re-domiciling and listing on the Moscow Exchange, Cian is comparatively structured and exposes the deepest RE-specific data in the region — price history, developer/new-build dossiers, a mortgage calculator, agent data, geo, photos and floor plans.
Access note (sanctions / region limits)
Access to Russian real-estate data is region- and sanctions-limited. Russian sites apply geo-blocks, RU-only payment requirements, captcha and operate under legal ambiguity for outside parties, and traffic figures for Russian sites are especially noisy (sanctions, VPN traffic, measurement gaps) — treat the visit numbers as order-of-magnitude. These constraints are factual context for any Russian-market integration and may affect availability; nothing here implies a PropAPIS coverage commitment for Russia.
Coverage
- Russia (Moscow, St. Petersburg and major cities)
- New-build (primary market), resale, long-term rental, commercial
- Developer and new-build project data
- Agent attribution on listings
Data Fields Available
PropAPIS models the structured listing data Cian exposes — the richest field set in the region:
Property Information
- Address and location
- Price (asking price or rent)
- Price history (per-listing)
- Area (m²)
- Rooms: number of rooms
- Floor and total floors
- Building year
- Property type
New-build & Financial
- Developer / new-build project dossier
- Mortgage calculator inputs
- Floor plan
Listing Details
- Description: full listing text
- Photos: image URLs
- Geo: latitude and longitude
- Listing type: sale, rental, new-build, commercial
Agent Information
- Agent name
- Contact details (where exposed)
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a single Cian listing by URL
listing = api.platforms.cian.get_listing(
url='https://www.cian.ru/sale/flat/...'
)
print(f"Price: {listing.price:,} RUB")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")
print(f"Price history points: {len(listing.price_history)}")Search Listings
# Search Cian listings
results = api.platforms.cian.search(
city='Moscow',
listing_type='sale',
min_price=8000000,
max_price=20000000,
min_rooms=2,
)
for item in results[:10]:
print(f"{item.address} - {item.price:,} RUB ({item.area} m²)")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
listing = api.platforms.cian.get_listing(
url='https://www.cian.ru/sale/flat/...'
)
print(f"Price: {listing.price:,} RUB")
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.cian.getListing({
url: 'https://www.cian.ru/sale/flat/...',
});
console.log(`Price: ${listing.price} RUB`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/cian/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.cian.ru/sale/flat/..."