CommonFloor Data Parser & API
CommonFloor is a legacy India property portal/aggregator — acquired by Quikr and still operating alongside Quikr Homes — and PropAPIS extracts its resale, rental and new-build project listings plus apartment-community data through a single REST API. Cover CommonFloor’s inventory without building or maintaining a scraper.
| Country | India |
|---|---|
| Type | Aggregator |
| Owner | Quikr |
| Listing types | resale, rental, new-build |
| Monthly visits | Low (legacy) |
| Active listings | — |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.commonfloor.com |
Platform Overview
Market Position
- Legacy India portal/aggregator with low traffic
- Quikr acquired CommonFloor; both still operate under Quikr as of 2026 (per the South Asia research report)
- Covers resale and rental residential plus new-build project pages
- Known historically for apartment-community / society pages and project listings
Note: Quikr Homes and CommonFloor are in the same ownership cluster — one parser pattern can address both.
Market Coverage
Geographic Coverage:
- Metros: Bengaluru, Mumbai, Delhi NCR, Hyderabad, Pune, Chennai
- Tier-2 cities across India
Property Types:
- Apartments and Builder Floors
- Independent Houses and Villas
- New Projects / project pages
- Apartment communities / societies
Data Availability
India’s listing mix is unusually new-launch / under-construction heavy — primary residential is the dominant monetized segment. Where CommonFloor 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 CommonFloor 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 / Community Data
- Developer: Builder name
- Project: Development / community name
- Configurations: Available BHK unit types
- Amenities: Project / society 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.commonfloor.get_property(
listing_id='12345678'
)
print(f"Title: {property_data.title}")
print(f"Price: ₹{property_data.price:,}")
print(f"Project: {property_data.project}")Search Listings
# Search CommonFloor listings
listings = api.platforms.commonfloor.search(
city='Bengaluru',
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 CommonFloor project pages
projects = api.platforms.commonfloor.search_projects(
city='Pune'
)
for project in projects[:5]:
print(f"{project.name} - {project.developer}")
print(f" {project.locality}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search CommonFloor listings in Bengaluru
listings = api.platforms.commonfloor.search(city='Bengaluru', 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 CommonFloor listings in Bengaluru
const listings = await api.platforms.commonfloor.search({
city: 'Bengaluru',
purpose: 'for-sale',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - ₹${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/commonfloor/search?city=Bengaluru&purpose=for-sale" \
-H "Authorization: Bearer your_api_key"