PropTiger Data Parser & API
PropTiger is an India property portal focused on primary / under-construction residential inventory — divested by REA Group to Aurum PropTech in 2025 — and PropAPIS extracts its new-launch projects, RERA IDs, possession dates and developer data through a single REST API. Cover India’s primary-residential segment without building or maintaining a scraper.
| Country | India |
|---|---|
| Type | Portal |
| Owner | Aurum PropTech |
| Listing types | new-build, resale, rental |
| Monthly visits | Lower (declining) |
| Active listings | — |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.proptiger.com |
Platform Overview
Market Position
- Primary-focused India portal: emphasis on new-build / under-construction projects
- REA Group divested PropTiger to Aurum PropTech in 2025 (~₹86.45 cr deal) to focus on Housing.com (per the South Asia research report)
- Traffic is lower and declining relative to the India big three (99acres, Housing.com, Magicbricks)
- Now part of the Aurum PropTech stack, no longer under a single REA parser umbrella alongside Makaan
Note: PropTiger and Makaan share legacy REA-stack lineage and are now both Aurum-aligned — one parser pattern can address the cluster.
Market Coverage
Geographic Coverage:
- Metros: Mumbai, Delhi NCR, Bengaluru, Hyderabad, Pune, Chennai, Kolkata
- Tier-2 cities across India
- Nationwide new-launch and under-construction inventory
Property Types:
- New Projects / Under-construction developments (primary focus)
- Apartments and Builder Floors
- Independent Houses and Villas
- Resale ready-to-move properties
Data Availability
India’s listing mix is unusually new-launch / under-construction heavy — primary residential is the dominant monetized segment, and PropTiger is positioned squarely in it. Under-construction projects carry the richest metadata: RERA registration numbers, possession dates, unit configurations, developer and amenities. RERA IDs are an India-unique normalizing key that PropAPIS captures where published.
Listing Categories:
- New Projects: Developer launches with RERA and possession data
- Buy: Resale and ready-to-move properties
- Rent: Long-term residential rentals
Data Fields Available
PropAPIS extracts structured data from each PropTiger 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)
- Possession / Completion status
New-Launch / Project Data
- Developer: Builder name
- Project: Development / project name
- RERA ID: RERA registration number where published
- Possession Date: Expected handover
- Configurations: Available BHK unit types
- Amenities: Project facilities
Listing Details
- Description: Full listing text
- Photos: Image URLs
- Floor Plan availability
- 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.proptiger.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: ₹{property_data.price:,}")
print(f"Project: {property_data.project}")
print(f"RERA: {property_data.rera_id}")Search Listings
# Search PropTiger listings
listings = api.platforms.proptiger.search(
city='Pune',
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 New Projects
# Search new-launch / under-construction projects
projects = api.platforms.proptiger.search_projects(
city='Mumbai',
developer='Lodha'
)
for project in projects[:5]:
print(f"{project.name} - {project.developer}")
print(f" RERA: {project.rera_id} | Possession: {project.possession_date}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search PropTiger new projects in Pune
projects = api.platforms.proptiger.search_projects(city='Pune')
for project in projects[:5]:
print(f"{project.name} - {project.developer}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search PropTiger new projects in Pune
const projects = await api.platforms.proptiger.searchProjects({
city: 'Pune',
});
projects.slice(0, 5).forEach((p) => {
console.log(`${p.name} - ${p.developer}`);
});curl "https://api.propapis.com/v1/platforms/proptiger/search?city=Pune&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"