search_apartments_for_sale
cian.ruSearches Moscow apartments for sale on https://www.cian.ru by district IDs, price range, rooms, sorting, and page range. Returns cleaned full listing records with price, area, floor, address, metro, coordinates, building details, media, and other property-specific fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_apartments_for_sale?
Searches Moscow apartments for sale on https://www.cian.ru by district IDs, price range, rooms, sorting, and page range. Returns cleaned full listing records with price, area, floor, address, metro, coordinates, building details, media, and other property-specific fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass district_ids, min_price, max_price, rooms, sort, start_page, max_pages and get the result back without maintaining a scraper.
Response
{
"sort": "<string>",
"rooms": [
0
],
"source": "<string>",
"has_more": true,
"listings": [
{}
],
"max_price": 0,
"min_price": 0,
"page_size": 0,
"start_page": 0,
"district_ids": [
0
],
"page_numbers": [
0
],
"pages_fetched": 0,
"total_results": 0,
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/0b71fbc8-86bb-41cd-a01d-270b5d73dfe5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0b71fbc8-86bb-41cd-a01d-270b5d73dfe5",
"variables": {
"district_ids": [11],
"min_price": 15000000,
"max_price": 25000000,
"rooms": [2],
"sort": "price_asc",
"start_page": 1,
"max_pages": 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="0b71fbc8-86bb-41cd-a01d-270b5d73dfe5") — the "search_apartments_for_sale" function, which searches Moscow apartments for sale on https://www.cian.ru by district IDs, price range, rooms, sorting, and page range. Returns cleaned full listing records with price, area, floor, address, metro, coordinates, building details, media, and other property-specific fields.. It takes district_ids (list[int]), min_price (int), max_price (int), rooms (list[int]), sort (str), start_page (int), max_pages (int). Return the result as structured JSON.