Avito Realty Data Parser & API
Avito Realty is the real-estate vertical of Avito — Russia’s largest classifieds marketplace with roughly 150-300M total monthly visits and the biggest property inventory in the region — 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 | Marketplace |
| Owner | Avito (Kismet Capital / Rosselkhozbank affiliate) |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | ~150-300M / mo (Avito total) |
| Active listings | 100k+ secondary, ~215k new-build |
| API access | Unofficial API only |
| Parse priority | ★★★★☆ |
| Official site | www.avito.ru/rossiya/nedvizhimost |
Platform Overview
Market Position
Avito is by far the largest classifieds reach in the region, drawing an estimated ~150-300M total monthly visits (SimilarWeb/Semrush, Apr 2026; volatile) across all categories. Its real-estate vertical carries the biggest property inventory in the region — 100k+ secondary listings and ~215k new-build units per a Russian government study — and Avito has been named the best real-estate app in Russia.
Ownership has shifted repeatedly: Avito was sold by Prosus/Naspers to Ivan Tavrin’s Kismet Capital Group in 2022, and in April 2025 an affiliate of Rosselkhozbank acquired ~50% of the company. As a horizontal marketplace, Avito Realty listings are more free-text than dedicated RE portals, but the volume is unmatched.
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 and captcha, and operate under legal ambiguity for outside parties; Tavrin/Kismet are under US sanctions. 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 nationwide)
- New-build (primary market), resale, long- and short-term rental
- Commercial property and land
- Seller (private and agency) attribution on listings
Data Fields Available
PropAPIS models the structured listing data Avito Realty 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, commercial
Seller Information
- Seller name (private or agency)
- Contact details (where exposed)
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a single Avito Realty listing by URL
listing = api.platforms.avito_realty.get_listing(
url='https://www.avito.ru/moskva/kvartiry/...'
)
print(f"Price: {listing.price:,} RUB")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")
print(f"City: {listing.city}")Search Listings
# Search Avito Realty listings
results = api.platforms.avito_realty.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.avito_realty.get_listing(
url='https://www.avito.ru/moskva/kvartiry/...'
)
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.avitoRealty.getListing({
url: 'https://www.avito.ru/moskva/kvartiry/...',
});
console.log(`Price: ${listing.price} RUB`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/avito-realty/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.avito.ru/moskva/kvartiry/..."