search_properties
99acres.comSearches https://99acres.com for real estate properties for sale or rent in an Indian city. Returns paginated property records with pricing, area, bedrooms, locality, seller details, URLs, and the non-empty source fields for each listing.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_properties?
Searches https://99acres.com for real estate properties for sale or rent in an Indian city. Returns paginated property records with pricing, area, bedrooms, locality, seller details, URLs, and the non-empty source fields for each listing. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, transaction_type, property_type, bedrooms, min_price, max_price, page and get the result back without maintaining a scraper.
Response
{
"city": "<string>",
"page": 0,
"properties": [
{
"url": "<string>",
"area": "<string>",
"city": "<string>",
"price": "<string>",
"title": "<string>",
"bedrooms": "<string>",
"locality": "<string>",
"area_unit": "<string>",
"bathrooms": "<string>",
"listing_id": "<string>",
"seller_info": {},
"source_data": {},
"property_type": "<string>",
"price_per_area": "<string>"
}
],
"source_url": "<string>",
"result_count": 0,
"transaction_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/ed896db4-e3a0-447f-a13c-a4892968a2fd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ed896db4-e3a0-447f-a13c-a4892968a2fd",
"variables": {
"city": "Bangalore",
"transaction_type": "sale",
"property_type": "all",
"bedrooms": 0,
"min_price": 0,
"max_price": 0,
"page": 1
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="ed896db4-e3a0-447f-a13c-a4892968a2fd") — the "search_properties" function, which searches https://99acres.com for real estate properties for sale or rent in an Indian city. Returns paginated property records with pricing, area, bedrooms, locality, seller details, URLs, and the non-empty source fields for each listing.. It takes city (str), transaction_type (str), property_type (str), bedrooms (int), min_price (int), max_price (int), page (int). Return the result as structured JSON.