imot.bg Data Parser & API
imot.bg is Bulgaria’s #1 real-estate portal — the country’s market leader since 2002 — and PropAPIS extracts its sale, rental and new-build listings through a single REST API. With a large national inventory and modest anti-bot defenses, it is a high value-to-effort target in the Balkans.
| Country | Bulgaria |
|---|---|
| Type | Portal |
| Owner | imot.bg |
| Listing types | new-build, resale, rental, commercial |
| Monthly visits | ~low-single-digit M / mo |
| Active listings | Large |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.imot.bg |
Platform Overview
Market Position
imot.bg has been Bulgaria’s #1 real-estate portal since 2002 (SimilarWeb, Jan 2026), drawing low-single-digit millions of monthly visits and carrying a large national listing inventory. It leads the market ahead of imoti.net (#2) and the bank-tied dskhome.bg (#3); the Spitogatos-network brand Indomio.bg is also present.
Its long-standing position and low anti-bot difficulty make imot.bg one of the most cost-effective Bulgarian sources to integrate.
Coverage
- Bulgaria (Sofia, Plovdiv, Varna and major cities)
- New-build (primary market), resale, long-term rental, commercial
- Agency attribution on listings
Data Fields Available
PropAPIS extracts the structured listing data imot.bg 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
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 imot.bg listing by URL
listing = api.platforms.imot_bg.get_listing(
url='https://www.imot.bg/pcgi/imot.cgi?...'
)
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 imot.bg listings
results = api.platforms.imot_bg.search(
city='Sofia',
listing_type='sale',
min_price=40000,
max_price=150000,
min_rooms=2,
)
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.imot_bg.get_listing(
url='https://www.imot.bg/pcgi/imot.cgi?...'
)
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.imotBg.getListing({
url: 'https://www.imot.bg/pcgi/imot.cgi?...',
});
console.log(`Price: ${listing.price} EUR`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/imot-bg/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.imot.bg/pcgi/imot.cgi?..."