Site housing.comTask find-furnished-housing-listingsVersion v5Updated Sep 16, 2026Category real-estate
Find furnished Housing.com rental or sale listings and return structured fields, furnishing verification, pagination, ownership, brokerage, badges, and canonical detail URLs. This skill was captured from a live agent session on housing.com and is published here as a reusable recipe for agents.
NoteSelectors and URL schemes drift as sites change. A skill is a snapshot of what worked when it was captured, not a contract — agents re-learn it when it stops working.
Find furnished Housing.com rental or sale listings for a location and return listing ID, title, BHK, area, locality, society/project, price, furnishing, poster type, brokerage status, badges, updated time, raw fields, and canonical detail URLs.
Use Cases
Find furnished rentals in a city or locality.
Find furnished sale listings in a city or locality.
Filter furnished listings by BHK, property type, locality, and price.
Restrict rental results to owner or no-brokerage listings.
Collect structured listing fields across paginated Housing.com SERPs.
Automation Flow
Build the direct SERP URL. For sales with a known locality use https://housing.com/in/buy/{city}/{locality}-gid/; for city-wide BHK apartments use https://housing.com/in/buy/{city}/{bhk}bhk-flats-fid/ (for example, the observed Pune route). Append ?page={page}. For rentals with a known polygon ID use https://housing.com/rent/furnished-flats-for-rent-in-{locality}-{city}-G1P{polygon-id}; use the D2P route for without-brokerage and C4P for the optional 2-BHK route. If the locality or polygon route is unknown, search the relevant page, press Enter if needed, select the matching CITY result, and capture the resulting URL.
Goto each SERP URL and run this extractor; concatenate pages and deduplicate by id. It handles sale and rental URL schemas and applies card-visible filters. For sale furnishing, treat a missing card value as unknown until detail verification.
Apply {bhk}, {property-type}, {min-price}, {max-price}, {furnishing}, {poster-type}, {no-brokerage}, and {verified} to the records. For sale listings missing furnishing or other required fields, goto each canonical url and run this detail extractor; retain only records whose requested fields and price range are confirmed.
Continue direct ?page={n} navigation until the SERP yields no new listing IDs or its pagination ends; deduplicate by id and preserve canonical detail URLs. Buy apartment-specific BHK routes are narrower than the broader {bhk}bhk-fid route; use -flats-fid/ when property type must be apartment.
Params
Param
What it does
Example value
{location}
Location searched when no direct route is known
Andheri West, Mumbai
{locality}
Housing.com locality slug
andheri-west
{city}
Housing.com city slug
mumbai
{state}
State slug for generic rental SERPs
karnataka
{polygon-id}
Opaque Housing.com rental location ID
5s2sntlyr4a7izpb
{page}
Pagination query parameter
2
{intent}
Rental or sale search
buy
{bhk}
Bedroom filter
3
{property-type}
Property-type filter
apartment
{furnished}
Furnishing requirement verified from card or detail page
Fully furnished
{min-price}
Optional minimum price in rupees
2500000
{max-price}
Optional maximum price in rupees
15000000
{poster-type}
Optional poster restriction
Owner
{no-brokerage}
Optional brokerage restriction
true
{verified}
Optional verified-badge requirement
true
Possible Friction Points
Trigger
Action
Akamai challenge marker appears while content remains available
Continue with the loaded Housing.com DOM; restart the BQL session with the residential proxy only if the challenge replaces the content.
Rental polygon SERP returns HTTP 406
Reopen /rent, search the location, press Enter, select the matching CITY suggestion, and capture the G1, D2, or C4 route.
Rendered location search does not submit
Enter the locality and press Enter, then capture the resulting locality URL.
Buy cards omit furnishing or show it inconsistently
Open each candidate canonical detail URL and use the detail extractor.
Buy BHK route includes non-apartment types
Use the observed {bhk}bhk-flats-fid/ route and retain only property_type === 'apartment'.
Listing cards contain nested recommendations or duplicate links
Use the nearest ancestor containing a ₹ price and deduplicate by listing ID.
Pagination click times out or blanks the session
Goto the exact SERP URL with ?page={n} directly.
Furnished-filter footer link navigates incorrectly
Build and goto the direct furnished rental URL instead of clicking the footer link.
Rental candidate lacks price, owner, brokerage, or furnishing
Open its canonical detail URL and verify the missing fields before retaining it.