Discover/housing.com API
live

housing.com APIhousing.com

Search and retrieve property listings from Housing.com. Access buy, rent, plots, and commercial listings across major Indian cities via 5 structured endpoints.

Endpoints
5
Updated
14d ago
Try it
City name to search in. Supported cities include Mumbai, Pune, Bengaluru, Hyderabad, Chenn
Page number for pagination.
Number of results per page.
Specific locality within the city to narrow results (e.g. 'Bandra', 'Andheri', 'Koramangal
api.parse.bot/scraper/2f244511-21f6-4d0c-a18a-c51576e2ba8a/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/2f244511-21f6-4d0c-a18a-c51576e2ba8a/search_buy_listings?city=Mumbai&page=1&limit=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for properties to buy on Housing.com. Returns paginated results including project and resale listings with price, area, address, and seller information. Results can be filtered by city and locality.

Input
ParamTypeDescription
citystringCity name to search in. Supported cities include Mumbai, Pune, Bengaluru, Hyderabad, Chennai, Delhi, Kolkata, Ahmedabad, Noida, Gurgaon, Navi Mumbai, Thane, and others listed on Housing.com.
pageintegerPage number for pagination.
limitintegerNumber of results per page.
localitystringSpecific locality within the city to narrow results (e.g. 'Bandra', 'Andheri', 'Koramangala'). When provided, results are filtered to properties in that locality.
Response
{
  "type": "object",
  "fields": {
    "config": "object containing pageInfo with totalCount, size, and page",
    "properties": "array of property listings with listingId, title, subtitle, propertyType, price, displayPrice, address, url, builtUpArea, details, sellers"
  },
  "sample": {
    "data": {
      "config": {
        "pageInfo": {
          "page": 1,
          "size": 30,
          "totalCount": 54623
        }
      },
      "properties": [
        {
          "url": "/in/buy/projects/page/345903-casagrand-caladium-by-casagrand-builder-private-limited-in-wagholi",
          "price": 12000000,
          "title": "Casagrand Caladium",
          "address": {
            "url": null,
            "address": "Wagholi, Pune"
          },
          "details": {
            "config": {
              "propertyConfig": [
                {
                  "label": "2 BHK Apartment",
                  "range": "1.2 Cr - 1.43 Cr"
                }
              ]
            },
            "amenities": [
              {
                "data": [
                  "Pool",
                  "Gym",
                  "Lift"
                ],
                "type": "Society Amenities"
              }
            ]
          },
          "sellers": [
            {
              "id": "faa55dba-b19e-4539-b86e-21780e2d1f10",
              "name": "Casagrand Builder Private Limited",
              "type": "Developer"
            }
          ],
          "subtitle": "2, 3 BHK Flats",
          "listingId": "345903",
          "updatedAt": "2026-04-29T18:30:06.000Z",
          "builtUpArea": {
            "unit": "sq.ft",
            "value": 937
          },
          "displayPrice": {
            "unit": null,
            "displayValue": "₹1.2 Cr - 1.76 Cr"
          },
          "propertyType": "project",
          "coverImageUrl": null
        }
      ]
    },
    "status": "success"
  }
}

About the housing.com API

The Housing.com API exposes 5 endpoints for querying Indian real estate listings across sale, rental, and commercial categories. search_listings handles all service types — buy, rent, plots, commercial, and paying guest — while dedicated endpoints like search_buy_listings and get_property_detail return structured fields including listingId, price, builtUpArea, address, sellers, and geographic coordinates for properties across major Indian cities.

Endpoints and Filters

The API covers residential and commercial real estate data from Housing.com across five endpoints. search_buy_listings and search_rent_listings each accept city, locality, page, and limit parameters and return paginated arrays of property objects with fields including listingId, title, propertyType, price, displayPrice, address, url, builtUpArea, details, and sellers. The config object in each response carries pageInfo with totalCount, size, and page for pagination control.

Flat-Specific and Generic Search

get_flats_listings filters results specifically to flat and apartment types and accepts a service parameter to switch between buy and rent results. The generic search_listings endpoint is the most flexible: it accepts a service field covering buy, rent, plots, commercial, and paying_guest, a category field (residential or commercial), and a property_type string such as Flats, Villa, or Plot. This makes it suitable for cross-category queries without calling multiple endpoints.

Property Detail

get_property_detail takes a property_id — either a URL slug or a full Housing.com property URL — and returns a detailed record with fields including name, type, image, price, address, builder, sellers, latitude, faqs, and url. It handles both new project slugs and resale listing slugs, making it useful for enriching listing results retrieved from the search endpoints.

City and Locality Coverage

Supported cities include Mumbai, Pune, Bengaluru, Hyderabad, Chennai, Delhi, and Kolkata. The locality parameter narrows results to neighborhoods such as Bandra, Andheri, or Koramangala when provided alongside a city. Results are paginated and city/locality filtering works uniformly across search endpoints.

Common use cases
  • Aggregate buy and rent listings for a specific locality to compare price per square foot across neighborhoods
  • Build a property alert system using search_buy_listings pagination to detect new listings in a city
  • Enrich a property database with builder, seller, and coordinate data using get_property_detail
  • Filter flat and apartment inventory by city and service type via get_flats_listings for a residential search tool
  • Pull commercial and plot listings using search_listings with service=commercial or service=plots
  • Aggregate paying guest listings in metro cities for a co-living or student accommodation finder
  • Map property listings using the latitude field returned by get_property_detail for geo-visualization
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Housing.com have an official developer API?+
Housing.com does not publish a public developer API or documented REST interface for third-party use. This Parse API provides structured access to Housing.com listing data without requiring direct integration with the site.
What does `get_property_detail` return that the search endpoints don't?+
get_property_detail returns fields not present in search results: latitude (geographic coordinates), builder (developer information), faqs (property-specific Q&A), and a full image array. Search endpoints return summary fields like displayPrice, builtUpArea, and sellers suitable for list views, while get_property_detail is intended for individual property pages.
How does pagination work across search endpoints?+
All search endpoints return a config object containing pageInfo with totalCount, size, and page. Pass the page integer parameter to step through results and limit to control page size. totalCount lets you calculate how many pages are available for a given query.
Are property valuations, price history, or market trend data available?+
Not currently. The API returns listed prices and display prices from active listings, but does not expose historical price data, valuation estimates, or locality-level market trend aggregates. You can fork this API on Parse and revise it to add an endpoint targeting Housing.com's locality insights or trend pages.
Which cities and localities are supported?+
Named supported cities include Mumbai, Pune, Bengaluru, Hyderabad, Chennai, Delhi, and Kolkata. The locality parameter accepts neighborhood-level strings such as Bandra, Andheri, or Koramangala. Cities outside this set may return empty results or reduced coverage — the API does not currently validate city names before querying.
Page content last updated . Spec covers 5 endpoints from housing.com.
Related APIs in Real EstateSee all →
idealista.pt API
Search and filter property listings across Portugal by location, price, and size, then access detailed information about each property including its characteristics and pricing history. Monitor how property prices change over time to help you make informed decisions about buying or selling real estate.
cookcountyil.gov API
Search Cook County property tax records, look up court cases, find code violations, and get department contact information all in one place. Quickly access public records and government contacts without navigating multiple websites.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
beijing.anjuke.com API
Search Beijing real estate listings for second-hand homes and rentals, view detailed property information and price trends, and discover agents and community-specific listings. Get access to the Beijing house price index to track market movements and make informed decisions about property purchases or rentals.
58.com Housing API
Access real-time housing market data from 58.com (58同城), China's largest classifieds platform. Search house price trends across 31+ major Chinese cities at city, district, and neighborhood levels, and browse hot new property developments with prices, floor plans, and location details.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.