Marketplace
No threads yet
Live

search_apartments_for_rent

yad2.co.il

Searches https://yad2.co.il for apartments for rent by region, page, price range, and room count. Returns private, agency, promoted, and platinum listings with all non-empty record details exposed by Yad2.

Parameters6
Runs13
Updated10d ago
Degraded13 runs · 92.3% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_apartments_for_rent?

Searches https://yad2.co.il for apartments for rent by region, page, price range, and room count. Returns private, agency, promoted, and platinum listings with all non-empty record details exposed by Yad2. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass region, page, min_price, max_price, min_rooms, max_rooms and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "site": "<string>",
  "region": 0,
  "listings": [
    {}
  ],
  "source_url": "<string>",
  "region_name": "<string>",
  "total_pages": 0,
  "transaction": "<string>",
  "source_counts": {},
  "total_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c267906c-0643-4bc0-ade7-ffa58859c814/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c267906c-0643-4bc0-ade7-ffa58859c814",
    "variables": {
        "region": 1,
        "page": 1,
        "min_price": 0,
        "max_price": 0,
        "min_rooms": 0,
        "max_rooms": 0
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="c267906c-0643-4bc0-ade7-ffa58859c814") — the "search_apartments_for_rent" function, which searches https://yad2.co.il for apartments for rent by region, page, price range, and room count. Returns private, agency, promoted, and platinum listings with all non-empty record details exposed by Yad2..

It takes region (int), page (int), min_price (int), max_price (int), min_rooms (float), max_rooms (float). Return the result as structured JSON.