Marketplace
No threads yet
Live

search_agents_by_suburb

domain.com.au

Searches real estate agents by Australian suburb on https://domain.com.au, returning complete non-empty profiles, sales statistics, reviews, and agency details.

Parameters2
Runs10
Updated1d ago
Degraded10 runs · 60% 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_agents_by_suburb?

Searches real estate agents by Australian suburb on https://domain.com.au, returning complete non-empty profiles, sales statistics, reviews, and agency details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass suburb_location, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "agents": [
    {}
  ],
  "suburb_slug": "<string>",
  "total_pages": 0,
  "total_agents": 0,
  "results_count": 0,
  "suburb_location": "<string>",
  "location_profile": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5167fb09-0a1b-44a2-9ce1-87b60643f4bf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5167fb09-0a1b-44a2-9ce1-87b60643f4bf",
    "variables": {
        "suburb_location": "Melbourne VIC 3000",
        "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="5167fb09-0a1b-44a2-9ce1-87b60643f4bf") — the "search_agents_by_suburb" function, which searches real estate agents by Australian suburb on https://domain.com.au, returning complete non-empty profiles, sales statistics, reviews, and agency details..

It takes suburb_location (str), page (int). Return the result as structured JSON.