Quikr Homes Data Parser & API
Quikr Homes is the property vertical of India’s Quikr classifieds marketplace — covering resale and rental residential listings — and PropAPIS extracts its listing and locality data through a single REST API. Cover Quikr Homes inventory without building or maintaining a scraper.
| Country | India |
|---|---|
| Type | Marketplace |
| Owner | Quikr |
| Listing types | resale, rental |
| Monthly visits | Low |
| Active listings | — |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.quikr.com/homes |
Platform Overview
Market Position
- Property vertical of the Quikr horizontal classifieds marketplace
- Low dedicated property traffic; classifieds-style listings
- Quikr acquired CommonFloor; both still operate under Quikr as of 2026 (per the South Asia research report)
- Classifieds inventory is higher-volume but thinner / looser in structured fields than portals like 99acres
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
- Resale and rental residential
Data Availability
As a classifieds marketplace, Quikr Homes carries high listing volume with thinner, free-text-heavier fields than dedicated portals — less normalized geo and no price history. PropAPIS normalizes the available structured fields (price, BHK, area, locality) from each listing.
Listing Categories:
- Buy: Resale and ready-to-move properties
- Rent: Long-term residential rentals
Data Fields Available
PropAPIS extracts structured data from each Quikr Homes listing:
Property Information
- Address: Locality and city
- Price: Sale price or rent
- Bedrooms and Bathrooms (BHK configuration)
- Property Type: Apartment, villa, independent house
- Area: Built-up area (sq ft) where published
Listing Details
- Description: Full listing text
- Photos: Image URLs
- Added Date
Seller Information
- Seller name
- Listing type: Owner or dealer
- Contact where published
Location
- Locality and City
- Coordinates: Latitude and longitude where published
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.quikr.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 Quikr Homes listings
listings = api.platforms.quikr.search(
city='Bengaluru',
purpose='for-rent',
max_price=30000
)
for listing in listings[:10]:
print(f"{listing.title} - ₹{listing.price:,}")
print(f" {listing.bedrooms} BHK | {listing.locality}")Search Resale
# Search Quikr Homes resale listings
resale = api.platforms.quikr.search(
city='Pune',
purpose='for-sale',
min_bedrooms=2
)
for listing in resale[:10]:
print(f"{listing.title} - ₹{listing.price:,}")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search Quikr Homes rentals in Bengaluru
listings = api.platforms.quikr.search(city='Bengaluru', purpose='for-rent')
for listing in listings[:5]:
print(f"{listing.title} - ₹{listing.price:,}")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search Quikr Homes rentals in Bengaluru
const listings = await api.platforms.quikr.search({
city: 'Bengaluru',
purpose: 'for-rent',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - ₹${l.price.toLocaleString()}`);
});curl "https://api.propapis.com/v1/platforms/quikr/search?city=Bengaluru&purpose=for-rent" \
-H "Authorization: Bearer your_api_key"