ingatlan.com Data Parser & API
ingatlan.com is Hungary’s #1 real-estate portal — ~8.4M monthly visits and overwhelmingly dominant inventory — and PropAPIS extracts its sale, rental and new-build listings through a single REST API. Competitors are an order of magnitude smaller, and ingatlan.com’s clean, consistent listing pages with modest anti-bot make it a high value-to-effort target.
| Country | Hungary |
|---|---|
| Type | Portal |
| Owner | Ingatlan.com Zrt. |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | ~8.37M / mo |
| Active listings | Dominant HU inventory |
| API access | No public API (parse-only) |
| Parse priority | ★★★★★ |
| Official site | www.ingatlan.com |
Platform Overview
Market Position
ingatlan.com is overwhelmingly dominant in Hungary, drawing ~8.37M monthly visits (Semrush, Mar 2026) — competitors sit an order of magnitude lower. It is owned by Ingatlan.com Zrt. and effectively concentrates the country’s real-estate inventory on a single platform.
Its clean, consistent listing detail pages (geo, attributes, agency, photos) combined with only moderate anti-bot make it a high value-to-effort parsing target.
Coverage
- Nationwide Hungary coverage (Budapest plus all counties)
- New-build (primary market), resale, long- and short-term rental
- Commercial property and land
- Agency attribution on listings
Data Fields Available
PropAPIS extracts the structured listing data ingatlan.com 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
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 ingatlan.com listing by URL
listing = api.platforms.ingatlan.get_listing(
url='https://www.ingatlan.com/...'
)
print(f"Price: {listing.price:,} HUF")
print(f"Area: {listing.area} m²")
print(f"Rooms: {listing.rooms}")
print(f"City: {listing.city}")Search Listings
# Search ingatlan.com listings
results = api.platforms.ingatlan.search(
city='Budapest',
listing_type='sale',
min_price=40000000,
max_price=90000000,
min_rooms=2,
)
for item in results[:10]:
print(f"{item.address} - {item.price:,} HUF ({item.area} m²)")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
listing = api.platforms.ingatlan.get_listing(
url='https://www.ingatlan.com/...'
)
print(f"Price: {listing.price:,} HUF")
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.ingatlan.getListing({
url: 'https://www.ingatlan.com/...',
});
console.log(`Price: ${listing.price} HUF`);
console.log(`Area: ${listing.area} m²`);
console.log(`Rooms: ${listing.rooms}`);curl https://api.propapis.com/v1/platforms/ingatlan/listing \
-H "Authorization: Bearer your_api_key" \
-G --data-urlencode "url=https://www.ingatlan.com/..."