NoBroker Data Parser & API
NoBroker is India’s leading brokerage-free property marketplace — Similarweb’s #4 real-estate site in India and the country’s highest-valued proptech (~₹7,965 cr, Jul 2024) — and PropAPIS extracts its owner-direct resale, rental and commercial listings through a single REST API. Reach owner-to-owner inventory that broker-led portals don’t carry, without building or maintaining a login-aware scraper.
| Country | India |
|---|---|
| Type | Marketplace |
| Owner | NoBroker |
| Listing types | resale, rental, commercial |
| Monthly visits | High (Similarweb #4 RE in India) |
| Active listings | — |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.nobroker.in |
Platform Overview
Market Position
- India’s highest-valued proptech: ~₹7,965 cr valuation (Jul 2024)
- Similarweb’s #4 real-estate site in India by traffic
- Broker-free, owner-to-owner model — listings posted directly by owners
- Strong rentals + resale focus; IPO plans signalled (per the South Asia research report)
Market Coverage
Geographic Coverage:
- Primary metros: Bengaluru, Mumbai, Pune, Chennai, Hyderabad, Delhi NCR
- Expanding across major Indian cities
Property Types:
- Apartments and Builder Floors
- Independent Houses and Villas
- Commercial (owner-direct offices, retail)
Data Availability
NoBroker’s differentiator is owner-direct inventory: listings come straight from owners rather than agents, so contact data is the core value — though it is heavily login / paywall gated. NoBroker also surfaces rent-agreement and AVM-style estimates, among the closest the region has to valuation data (sold/transaction feeds are largely absent across South Asia).
Listing Categories:
- Buy: Owner-listed resale properties
- Rent: Owner-direct long-term rentals
- Commercial: Owner-direct office and retail
Data Fields Available
PropAPIS extracts structured data from each NoBroker listing:
Property Information
- Address: Locality, city and building
- Price: Sale price or rent
- Bedrooms and Bathrooms (BHK configuration)
- Property Type: Apartment, villa, commercial
- Area: Built-up / carpet (sq ft)
- Furnishing status
Listing Details
- Description: Full listing text
- Amenities: Facilities and features
- Photos: Image URLs
- Owner-listed flag
- Added Date
Estimates
- Rent Estimate: AVM-style rent estimate where shown
- Price guidance for the locality
Location Data
- Locality and City
- Coordinates: Latitude and longitude
Owner contact details are heavily login / paywall gated on NoBroker; PropAPIS returns published fields and flags gated data accordingly.
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.nobroker.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"Owner listed: {property_data.owner_listed}")Search Listings
# Search NoBroker listings
listings = api.platforms.nobroker.search(
city='Bengaluru',
purpose='for-rent',
min_price=20000,
max_price=50000,
min_bedrooms=2,
property_type='Apartment'
)
for listing in listings[:10]:
print(f"{listing.title} - ₹{listing.price:,}/mo")
print(f" {listing.bedrooms} BHK | {listing.locality}")Search Owner-Direct Rentals
# Search owner-direct rental inventory
rentals = api.platforms.nobroker.search(
city='Pune',
purpose='for-rent',
owner_listed=True
)
for rental in rentals[:5]:
print(f"{rental.locality} - ₹{rental.price:,}/mo")
print(f" Rent estimate: ₹{rental.rent_estimate:,}/mo")Quick Start
from propapis import PropAPIS
api = PropAPIS(api_key='your_api_key')
# Search NoBroker rentals in Bengaluru
listings = api.platforms.nobroker.search(city='Bengaluru', purpose='for-rent')
for listing in listings[:5]:
print(f"{listing.title} - ₹{listing.price:,}/mo")import { PropAPIS } from 'propapis';
const api = new PropAPIS({ apiKey: 'your_api_key' });
// Search NoBroker rentals in Bengaluru
const listings = await api.platforms.nobroker.search({
city: 'Bengaluru',
purpose: 'for-rent',
});
listings.slice(0, 5).forEach((l) => {
console.log(`${l.title} - ₹${l.price.toLocaleString()}/mo`);
});curl "https://api.propapis.com/v1/platforms/nobroker/search?city=Bengaluru&purpose=for-rent" \
-H "Authorization: Bearer your_api_key"