Marketplace
No threads yet
Live

search_property_listings

housing.com

Searches buy, rent, plot, commercial, and paying guest listings on https://housing.com with city, locality, property type, and pagination filters.

Parameters6
Runs12
Updated3d ago
Operational12 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_property_listings?

Searches buy, rent, plot, commercial, and paying guest listings on https://housing.com with city, locality, property type, and pagination filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass service_type, category, city, locality, property_type, page and get the result back without maintaining a scraper.

Response

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

Call it

curl --location 'https://us-prod.notte.cc/functions/2fe77383-505a-46b9-84d6-8395156b8a1c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2fe77383-505a-46b9-84d6-8395156b8a1c",
    "variables": {
        "service_type": "buy",
        "category": "residential",
        "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="2fe77383-505a-46b9-84d6-8395156b8a1c") — the "search_property_listings" function, which searches buy, rent, plot, commercial, and paying guest listings on https://housing.com with city, locality, property type, and pagination filters..

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