Marketplace
No threads yet
Live

search_rental_properties

housing.com

Searches rental properties on https://housing.com and returns paginated listings with monthly rent, areas, addresses, and seller details. Supports city, locality, and physical property type filters.

Parameters4
Runs9
Updated10d ago
Operational9 runs · 100% 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_rental_properties?

Searches rental properties on https://housing.com and returns paginated listings with monthly rent, areas, addresses, and seller details. Supports city, locality, and physical property type filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, locality, property_type, page and get the result back without maintaining a scraper.

Response

{
  "city": "<string>",
  "page": 0,
  "service": "<string>",
  "listings": [
    {}
  ],
  "locality": "<string>",
  "page_size": 0,
  "total_count": 0,
  "total_pages": 0,
  "has_next_page": true,
  "property_type": "<string>",
  "last_updated_at": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c253c2d3-2840-486d-b611-fb45a256cfad/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c253c2d3-2840-486d-b611-fb45a256cfad",
    "variables": {
        "city": "Mumbai",
        "locality": "",
        "property_type": "all",
        "page": 1
    }
}'

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="c253c2d3-2840-486d-b611-fb45a256cfad") — the "search_rental_properties" function, which searches rental properties on https://housing.com and returns paginated listings with monthly rent, areas, addresses, and seller details. Supports city, locality, and physical property type filters..

It takes city (str), locality (str), property_type (str), page (int). Return the result as structured JSON.