Marketplace
No threads yet
Live

search_property_listings

zameen.com

Searches active property listings on https://zameen.com by city and location. Returns paginated, relevance-and-recency-sorted records with prices, photos, seller phone and WhatsApp details, and agency information.

Parameters5
Runs11
Updated10d ago
Operational11 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 active property listings on https://zameen.com by city and location. Returns paginated, relevance-and-recency-sorted records with prices, photos, seller phone and WhatsApp details, and agency information. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, location, page, page_size, purpose and get the result back without maintaining a scraper.

Response

{
  "city": "<string>",
  "page": 0,
  "purpose": "<string>",
  "results": [
    {}
  ],
  "location": "<string>",
  "page_size": 0,
  "total_pages": 0,
  "has_next_page": true,
  "total_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/2dc5f3fc-3042-4495-b17c-7560ffbaf04e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "2dc5f3fc-3042-4495-b17c-7560ffbaf04e",
    "variables": {
        "city": "Lahore",
        "location": "DHA Defence",
        "page": 1,
        "page_size": 5,
        "purpose": "for-sale"
    }
}'

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="2dc5f3fc-3042-4495-b17c-7560ffbaf04e") — the "search_property_listings" function, which searches active property listings on https://zameen.com by city and location. Returns paginated, relevance-and-recency-sorted records with prices, photos, seller phone and WhatsApp details, and agency information..

It takes city (str), location (str), page (int), page_size (int), purpose (str). Return the result as structured JSON.