Makaan Data Parser & API
Makaan is an India property portal covering resale, rental and new-build residential listings — a legacy REA-stack site now aligned with Aurum PropTech alongside PropTiger — and PropAPIS extracts its listing and locality data through a single REST API. Cover Makaan’s inventory without building or maintaining a scraper.
| Country | India |
|---|---|
| Type | Portal |
| Owner | Aurum PropTech |
| Listing types | resale, rental, new-build |
| Monthly visits | Low |
| Active listings | — |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.makaan.com |
Platform Overview
Market Position
- Smaller India portal with low traffic relative to the big three (99acres, Housing.com, Magicbricks)
- Shares legacy REA-stack lineage with PropTiger; both are now Aurum PropTech-aligned after REA’s 2025 PropTiger divestiture (per the South Asia research report)
- Covers resale and rental residential plus new-build project pages
- One parser pattern can address the PropTiger + Makaan cluster
Note: REA Group divested PropTiger to Aurum PropTech in 2025 and refocused on Housing.com; Makaan sits in the same legacy-stack cluster.
Market Coverage
Geographic Coverage:
- Metros: Mumbai, Delhi NCR, Bengaluru, Hyderabad, Pune, Chennai, Kolkata
- Tier-2 cities across India
Property Types:
- Apartments and Builder Floors
- Independent Houses and Villas
- New Projects / project pages
- Resale and rental residential
Data Availability
India’s listing mix is unusually new-launch / under-construction heavy — primary residential is the dominant monetized segment. Where Makaan exposes project pages, PropAPIS captures the available new-build metadata including RERA registration numbers where published — an India-unique normalizing key — alongside standard resale and rental fields.
Listing Categories:
- Buy: Resale and ready-to-move properties
- Rent: Long-term residential rentals
- New Projects: Developer project pages where available
Data Fields Available
PropAPIS extracts structured data from each Makaan listing:
Property Information
- Address: Locality, city and project
- Price: Sale price or rent
- Bedrooms and Bathrooms (BHK configuration)
- Property Type: Apartment, villa, plot
- Area: Carpet / built-up / super built-up (sq ft)
Project Data
- Developer: Builder name
- Project: Development / project name
- Configurations: Available BHK unit types
- Amenities: Project facilities
Listing Details
- Description: Full listing text
- Photos: Image URLs
- Added Date
Agent / Seller Information
- Agent / Builder name
- Listing type: Owner, dealer or builder
- Contact where published
Location & Market Data
- Locality and City
- Coordinates: Latitude and longitude
- Locality insights
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.makaan.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: ₹{property_data.price:,}")
print(f"Locality: {property_data.locality}")Search Listings
# Search Makaan listings
listings = api.platforms.makaan.search(
city='Hyderabad',
purpose='for-sale',
min_bedrooms=2,
property_type='Apartment'
)
for listing in listings[:10]:
print(f"{listing.title} - ₹{listing.price:,}")
print(f" {listing.bedrooms} BHK | {listing.locality}")Search Rentals
# Search Makaan rental listings
rentals = api.platforms.makaan.search(
city='Bengaluru',
purpose='for-rent',
max_price=40000
)
for rental in rentals[:10]:
print(f"{rental.title} - ₹{rental.price:,}/mo")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Makaan listings in Hyderabad
listings = api.platforms.makaan.search(city='Hyderabad', purpose='for-sale')
for listing in listings[:5]:
print(f"{listing.title} - ₹{listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Makaan listings in Hyderabad
const listings = await api.platforms.makaan.search({
city: 'Hyderabad',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - ₹${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/makaan/search?city=Hyderabad&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"