search_new_launch_projects
99acres.comSearches new launch or under-construction residential projects in an Indian city on https://99acres.com. Returns paginated project records with builder, price range, RERA details, drill-down URL, and complete non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_new_launch_projects?
Searches new launch or under-construction residential projects in an Indian city on https://99acres.com. Returns paginated project records with builder, price range, RERA details, drill-down URL, and complete non-empty source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, page, status_filter, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"city": "<string>",
"page": 0,
"projects": [
{
"city": "<string>",
"status": "<string>",
"locality": "<string>",
"possession": "<string>",
"project_id": "<string>",
"details_url": "<string>",
"price_range": "<string>",
"rera_number": "<string>",
"rera_status": "<string>",
"source_data": {},
"builder_name": "<string>",
"project_name": "<string>",
"project_type": "<string>"
}
],
"city_slug": "<string>",
"source_url": "<string>",
"status_filter": "<string>",
"page_result_count": 0,
"total_project_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/5f8c0595-bbad-4333-bdd2-96642ba6c5b2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5f8c0595-bbad-4333-bdd2-96642ba6c5b2",
"variables": {
"city": "Bangalore",
"page": 1,
"status_filter": "new_launch_or_under_construction",
"timeout_seconds": 45
}
}'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="5f8c0595-bbad-4333-bdd2-96642ba6c5b2") — the "search_new_launch_projects" function, which searches new launch or under-construction residential projects in an Indian city on https://99acres.com. Returns paginated project records with builder, price range, RERA details, drill-down URL, and complete non-empty source fields.. It takes city (str), page (int), status_filter (str), timeout_seconds (int). Return the result as structured JSON.