99acres Data Parser & API
99acres is India’s largest-traffic property portal — ~12.85M monthly visits (Semrush, Mar 2026) and 800k+ active listings — and PropAPIS extracts its new-launch, resale, rental and commercial listings, RERA project data and locality price trends through a single REST API. Cover India’s metros and tier-2 cities without building or maintaining a scraper.
| Country | India |
|---|---|
| Type | Portal |
| Owner | Info Edge |
| Listing types | new-build, resale, rental, commercial, land |
| Monthly visits | ~12.85M / mo |
| Active listings | 800k+ ("8 lakh+") |
| API access | Unofficial API only |
| Parse priority | ★★★★★ |
| Official site | www.99acres.com |
Platform Overview
Market Position
- Largest-traffic India property portal: ~12.85M monthly visits (Semrush, Mar 2026)
- Owned by Info Edge — part of the Naukri / Info Edge group
- 800k+ (“8 lakh+”) active listings spanning resale, rental and primary inventory
- Classifieds-style site with a large structured field set — best volume-per-effort in the region (per the South Asia research report)
Note: Similarweb showed a ~20.5M Jan-2026 reading that conflicts with Semrush’s ~12.85M; we treat the spike as an outlier and cite the lower figure.
Market Coverage
Geographic Coverage:
- Metros: Mumbai, Delhi NCR, Bengaluru, Hyderabad, Pune, Chennai, Kolkata
- Tier-2 cities across India
- Nationwide new-launch and resale inventory
Property Types:
- Apartments and Builder Floors
- Independent Houses and Villas
- Plots and Land
- Commercial (offices, retail, warehouses)
- New Projects / Under-construction developments
Data Availability
India’s listing mix is unusually new-launch / under-construction heavy — primary residential is the dominant monetized segment. 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:
- Buy: Resale and ready-to-move properties
- Rent: Long-term residential rentals
- New Projects: Developer launches with RERA and possession data
- Commercial: Offices, retail, warehouses
- Land: Plots and development sites
Data Fields Available
PropAPIS extracts structured data from each 99acres listing:
Property Information
- Address: Locality, city and project
- Price: Sale price or rent
- Bedrooms and Bathrooms (BHK configuration)
- Property Type: Apartment, villa, plot, commercial
- 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
- Price Trends: Locality-level price movement
- 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.acres99.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: ₹{property_data.price:,}")
print(f"Type: {property_data.property_type}")
print(f"Locality: {property_data.locality}")
print(f"RERA: {property_data.rera_id}")Search Listings
# Search 99acres listings
listings = api.platforms.acres99.search(
city='Mumbai',
purpose='for-sale',
min_price=10000000,
max_price=30000000,
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.acres99.search_projects(
city='Pune',
developer='Godrej'
)
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 99acres listings in Mumbai
listings = api.platforms.acres99.search(city='Mumbai', 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 99acres listings in Mumbai
const listings = await api.platforms.acres99.search({
city: 'Mumbai',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - ₹${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/99acres/search?city=Mumbai&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"