Skip to main content
POST
/
api
/
housing
/
projects
/housing/projects
curl --request POST \
  --url https://api.anysite.io/api/housing/projects \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "project": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@housing_project",
    "name": "<string>",
    "subtitle": "<string>",
    "project_type": "<string>",
    "description": "<string>",
    "configuration": "<string>",
    "possession_status": "<string>",
    "possession_date": "<string>",
    "launch_date": "<string>",
    "property_tags": [],
    "is_active": true,
    "price_min": 123,
    "price_max": 123,
    "price_text": "<string>",
    "price_per_sqft": "<string>",
    "currency": "<string>",
    "project_area": "<string>",
    "unit_count": 123,
    "size_range": "<string>",
    "area_unit": "<string>",
    "city": "<string>",
    "locality": "<string>",
    "sublocality": "<string>",
    "address": "<string>",
    "latitude": 123,
    "longitude": 123,
    "rera_id": "<string>",
    "is_rera_verified": true,
    "builder": {
      "@type": "@housing_project_builder",
      "name": "<string>",
      "description": "<string>",
      "established_year": "<string>",
      "project_count": 123,
      "image": "<string>",
      "profile_url": "<string>"
    },
    "configurations": [],
    "facilities": [],
    "amenities": [],
    "video_key": "<string>",
    "image": "<string>",
    "images": [],
    "image_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
project
string
required

Housing.com project id or a project page URL containing it

Minimum string length: 1
Examples:

"254864"

"https://housing.com/in/buy/projects/page/254864-godrej-urban-park-by-godrej-properties-ltd-in-powai"

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_project
name
string | null
subtitle
string | null
project_type
string | null
description
string | null
configuration
string | null
possession_status
string | null
possession_date
string | null
launch_date
string | null
property_tags
string[]
is_active
boolean | null
price_min
number | null
price_max
number | null
price_text
string | null
price_per_sqft
string | null
currency
string | null
project_area
string | null
unit_count
integer | null
size_range
string | null
area_unit
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
builder
HousingProjectBuilder · object
configurations
HousingProjectConfiguration · object[]
facilities
string[]
amenities
string[]
video_key
string | null
image
string | null
images
string[]
image_count
integer | null