Skip to main content
POST
/
api
/
acres99
/
properties
/
search
/acres99/properties/search
curl --request POST \
  --url https://api.anysite.io/api/acres99/properties/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "city": "<string>",
  "city_id": 123,
  "count": 2,
  "timeout": 300,
  "listing_type": "buy"
}
'
[
  {
    "result_type": "<string>",
    "id": "<string>",
    "url": "<string>",
    "@type": "@acres99_search_result",
    "spid": "<string>",
    "npxid": "<string>",
    "name": "<string>",
    "heading": "<string>",
    "description": "<string>",
    "property_type": "<string>",
    "transaction_type": "<string>",
    "builder_name": "<string>",
    "price": 123,
    "price_text": "<string>",
    "price_per_sqft": 123,
    "currency": "<string>",
    "carpet_area_sqft": 123,
    "bedroom_count": 123,
    "bathroom_count": 123,
    "floor": "<string>",
    "total_floor_count": 123,
    "possession_status": "<string>",
    "city": "<string>",
    "locality": "<string>",
    "latitude": 123,
    "longitude": 123,
    "rera_id": "<string>",
    "is_verified": true,
    "dealer_name": "<string>",
    "dealer_company": "<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 in, e.g. 'mumbai', 'delhi', 'bangalore'

Minimum string length: 1
city_id
integer
required

Numeric 99acres city id (e.g. 12 for Mumbai, 1 for Delhi)

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
listing_type
enum<string>
default:buy

Listing type

Available options:
buy,
rent

Response

Successful Response

result_type
string
required
id
string
required
url
string
required
@type
string
default:@acres99_search_result
spid
string | null
npxid
string | null
name
string | null
heading
string | null
description
string | null
property_type
string | null
transaction_type
string | null
builder_name
string | null
price
number | null
price_text
string | null
price_per_sqft
number | null
currency
string | null
carpet_area_sqft
number | null
bedroom_count
integer | null
bathroom_count
integer | null
floor
string | null
total_floor_count
integer | null
possession_status
string | null
city
string | null
locality
string | null
latitude
number | null
longitude
number | null
rera_id
string | null
is_verified
boolean | null
dealer_name
string | null
dealer_company
string | null