Zingat Data Parser & API
Zingat is a leading Turkish property portal — ~15M monthly visits (early-2025 estimate) with new-build, resale and rental listings plus neighborhood analytics — and PropAPIS extracts its listings, agent and project data through a single REST API. Sold by Property Finder to Doğan Holding, it sits in the same family as Hepsiemlak in Turkey’s large, new-build-heavy market.
| Country | Turkey |
|---|---|
| Type | Portal |
| Owner | Doğan Holding |
| Listing types | new-build, resale, rental |
| Monthly visits | ~15M / mo (early 2025, est.) |
| Active listings | Large |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.zingat.com |
Platform Overview
Market Position
- Leading Turkish property portal owned by Doğan Holding, parent of #1 portal Hepsiemlak (Online Marketplaces — Zingat sale)
- ~15M monthly visits estimated early 2025 — flag as ~ (estimate predates / overlaps the Doğan acquisition, per the MENA & Africa research report)
- Previously owned by Property Finder, which sold it to Doğan and took a stake in Hepsiemlak
- Medium anti-bot difficulty; known for neighborhood / area analytics
Market Coverage
Geographic Coverage:
- Istanbul: All districts (European and Asian sides)
- Ankara and Izmir
- Antalya, Bursa and coastal markets
- Nationwide Turkey
Property Types:
- Apartments (Daire) and Residences
- Villas and Detached houses
- Off-Plan / New Projects
- Land and Commercial where listed
Data Availability
New-build is a significant segment in Turkey, and off-plan / new-build is the richest developer-direct data type across the wider region. Zingat surfaces new projects alongside resale and rental, with neighborhood analytics layered on top (per the MENA & Africa research report).
Listing Categories:
- Buy (Satılık): Resale and ready properties
- Rent (Kiralık): Long-term rentals
- New Projects: Developer inventory
- Analytics: Neighborhood and area data
Data Fields Available
PropAPIS extracts structured data from each Zingat listing:
Property Information
- Address: Neighborhood, district and city
- Price: Sale price or rent (TRY)
- Bedrooms and Bathrooms (room count)
- Property Type: Apartment, villa, project
- Area: Gross / net size (sq m)
- Completion Status: Ready or off-plan
Off-Plan / Project Data
- Developer: Developer name
- Project: Development / project name
- Handover: Expected completion where shown
Listing Details
- Description: Full listing text
- Amenities: Facilities and features
- Photos: Image URLs
- Neighborhood analytics where shown
- Added Date
Agent Information
- Agency: Agency name
- Agent: Listing agent name
- Agent Contact: Phone where published
Location Data
- Neighborhood and District
- City
- Coordinates: Latitude and longitude where shown
API Endpoints
Get Property Details
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Get a listing by URL or ID
property_data = api.platforms.zingat.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: TRY {property_data.price:,}")
print(f"Type: {property_data.property_type}")
print(f"District: {property_data.district}")Search Listings
# Search Zingat listings
listings = api.platforms.zingat.search(
city='Istanbul',
purpose='for-sale',
min_rooms=2,
property_type='Apartment'
)
for listing in listings[:10]:
print(f"{listing.title} - TRY {listing.price:,}")
print(f" {listing.rooms} rooms | {listing.district}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Zingat listings in Istanbul
listings = api.platforms.zingat.search(city='Istanbul', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - TRY {listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Zingat listings in Istanbul
const listings = await api.platforms.zingat.search({
city: 'Istanbul',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - TRY ${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/zingat/search?city=Istanbul&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"