Skip to main content
POST
/
api
/
housing
/
properties
/housing/properties
curl --request POST \
  --url https://api.anysite.io/api/housing/properties \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "property": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@housing_property",
    "title": "<string>",
    "subtitle": "<string>",
    "project_name": "<string>",
    "result_type": "<string>",
    "property_type": "<string>",
    "description": "<string>",
    "bedroom_count": 123,
    "bathroom_count": 123,
    "balcony_count": 123,
    "parking_count": 123,
    "built_up_area": 123,
    "carpet_area": 123,
    "area_unit": "<string>",
    "floor": "<string>",
    "facing": "<string>",
    "furnishing": "<string>",
    "age": "<string>",
    "possession_status": "<string>",
    "property_tags": [],
    "price": 123,
    "price_text": "<string>",
    "price_per_sqft": "<string>",
    "brokerage": 123,
    "emi": "<string>",
    "currency": "<string>",
    "city": "<string>",
    "locality": "<string>",
    "sublocality": "<string>",
    "address": "<string>",
    "latitude": 123,
    "longitude": 123,
    "rera_id": "<string>",
    "is_rera_verified": true,
    "is_verified": true,
    "highlights": [],
    "amenities": [],
    "image": "<string>",
    "images": [],
    "image_count": 123,
    "dealer": {
      "@type": "@housing_property_dealer",
      "name": "<string>",
      "firm_name": "<string>",
      "type": "<string>",
      "designation": "<string>",
      "profile_url": "<string>",
      "customers_served": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
property
string
required

Housing.com property listing id or a listing page URL containing it

Minimum string length: 1
Examples:

"19957783"

"https://housing.com/in/buy/resale/page/19957783-2-bhk-apartment-in-powai-for-rs-22500000"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@housing_property
title
string | null
subtitle
string | null
project_name
string | null
result_type
string | null
property_type
string | null
description
string | null
bedroom_count
integer | null
bathroom_count
integer | null
balcony_count
integer | null
parking_count
integer | null
built_up_area
number | null
carpet_area
number | null
area_unit
string | null
floor
string | null
facing
string | null
furnishing
string | null
age
string | null
possession_status
string | null
property_tags
string[]
price
number | null
price_text
string | null
price_per_sqft
string | null
brokerage
number | null
emi
string | null
currency
string | null
city
string | null
locality
string | null
sublocality
string | null
address
string | null
latitude
number | null
longitude
number | null
rera_id
string | null
is_rera_verified
boolean | null
is_verified
boolean | null
highlights
string[]
amenities
string[]
image
string | null
images
string[]
image_count
integer | null
dealer
HousingPropertyDealer · object