Skip to main content
POST
/
api
/
acres99
/
projects
/
search
/acres99/projects/search
curl --request POST \
  --url https://api.anysite.io/api/acres99/projects/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "city": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@acres99_search_project",
    "npxid": "<string>",
    "name": "<string>",
    "description": "<string>",
    "builder_name": "<string>",
    "configuration": "<string>",
    "price_text": "<string>",
    "price_per_sqft": 123,
    "currency": "<string>",
    "possession_status": "<string>",
    "possession_date": "<string>",
    "city": "<string>",
    "locality": "<string>",
    "latitude": 123,
    "longitude": 123,
    "rera_status": "<string>",
    "rera_id": "<string>",
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
city
string
required

City slug to search projects in, e.g. 'mumbai', 'delhi'

Minimum string length: 1
count
integer
required

Max number of results to return

Required range: x >= 1
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:@acres99_search_project
npxid
string | null
name
string | null
description
string | null
builder_name
string | null
configuration
string | null
price_text
string | null
price_per_sqft
number | null
currency
string | null
possession_status
string | null
possession_date
string | null
city
string | null
locality
string | null
latitude
number | null
longitude
number | null
rera_status
string | null
rera_id
string | null
image
string | null