Marketplace
No threads yet
Live

get_zed_agent_listings

zedrealestate.au

Returns every current residential sale listing represented by a specified Zed Real Estate agent, including address, price, bedrooms, bathrooms, complete media-library images, floorplans, video, agents, source fields, and the REA ID. Reads https://zedrealestate.au.

Parameters1
Runs10
Updated10d ago
Operational10 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 get_zed_agent_listings?

Returns every current residential sale listing represented by a specified Zed Real Estate agent, including address, price, bedrooms, bathrooms, complete media-library images, floorplans, video, agents, source fields, and the REA ID. Reads https://zedrealestate.au. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass agent_name and get the result back without maintaining a scraper.

Response

{
  "total": 0,
  "listings": [
    {
      "slug": "<string>",
      "price": {},
      "title": "<string>",
      "wp_id": 0,
      "agents": [
        {}
      ],
      "images": [
        {}
      ],
      "rea_id": "<string>",
      "status": "<string>",
      "address": {},
      "heading": "<string>",
      "bedrooms": 0,
      "bathrooms": 0,
      "video_url": "<string>",
      "listing_url": "<string>",
      "source_fields": {},
      "floorplan_urls": [
        "<string>"
      ],
      "description_text": "<string>"
    }
  ],
  "agent_name": "<string>",
  "agent_slug": "<string>",
  "source_url": "<string>",
  "agent_profile_url": "<string>",
  "current_properties_scanned": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/cad8a4a1-56ce-4370-a945-7525123f5925/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "cad8a4a1-56ce-4370-a945-7525123f5925",
    "variables": {
        "agent_name": "Zed Nasheet"
    }
}'

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="cad8a4a1-56ce-4370-a945-7525123f5925") — the "get_zed_agent_listings" function, which returns every current residential sale listing represented by a specified Zed Real Estate agent, including address, price, bedrooms, bathrooms, complete media-library images, floorplans, video, agents, source fields, and the REA ID. Reads https://zedrealestate.au..

It takes agent_name (str). Return the result as structured JSON.