get_zed_sales_agents
zedrealestate.auReturns active Zed Real Estate sales agents who represent current residential sale listings, with names, slugs, profile URLs, department affiliations, and listing counts. Reads https://zedrealestate.au.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_zed_sales_agents?
Returns active Zed Real Estate sales agents who represent current residential sale listings, with names, slugs, profile URLs, department affiliations, and listing counts. Reads https://zedrealestate.au. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"total": 0,
"agents": [
{
"name": "<string>",
"slug": "<string>",
"profile_url": "<string>",
"directory_id": 0,
"current_listing_count": 0,
"department_affiliations": [
{
"id": 0,
"name": "<string>",
"slug": "<string>"
}
]
}
],
"source_url": "<string>",
"current_properties_scanned": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/80d671ac-e798-4c25-a864-3d328d5dfaaf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "80d671ac-e798-4c25-a864-3d328d5dfaaf",
"variables": {}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="80d671ac-e798-4c25-a864-3d328d5dfaaf") — the "get_zed_sales_agents" function, which returns active Zed Real Estate sales agents who represent current residential sale listings, with names, slugs, profile URLs, department affiliations, and listing counts. Reads https://zedrealestate.au.. It takes no parameters. Return the result as structured JSON.