search_australian_properties_for_sale
domain.com.auSearches https://domain.com.au for properties listed for sale in an Australian suburb. Returns paginated listing records with prices, addresses, features, branding, agents, media, inspections, and source metadata, with optional price, bedroom, bathroom, and property-type filters.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_australian_properties_for_sale?
Searches https://domain.com.au for properties listed for sale in an Australian suburb. Returns paginated listing records with prices, addresses, features, branding, agents, media, inspections, and source metadata, with optional price, bedroom, bathroom, and property-type filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass suburb_location, page, min_price, max_price, min_bedrooms, max_bedrooms, min_bathrooms, max_bathrooms, property_type and get the result back without maintaining a scraper.
Response
{
"meta": {
"filters": {},
"location": "<string>",
"totalPages": 0,
"currentPage": 0,
"listingType": "<string>",
"resultsOnPage": 0,
"totalListings": 0
},
"listings": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/160787a6-7a32-4179-a546-3b95928b373e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "160787a6-7a32-4179-a546-3b95928b373e",
"variables": {
"suburb_location": "Melbourne VIC 3000",
"page": 1,
"min_price": 0,
"max_price": 0,
"min_bedrooms": 0,
"max_bedrooms": 0,
"min_bathrooms": 0,
"max_bathrooms": 0,
"property_type": "any"
}
}'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="160787a6-7a32-4179-a546-3b95928b373e") — the "search_australian_properties_for_sale" function, which searches https://domain.com.au for properties listed for sale in an Australian suburb. Returns paginated listing records with prices, addresses, features, branding, agents, media, inspections, and source metadata, with optional price, bedroom, bathroom, and property-type filters.. It takes suburb_location (str), page (int), min_price (int), max_price (int), min_bedrooms (int), max_bedrooms (int), min_bathrooms (int), max_bathrooms (int), property_type (str). Return the result as structured JSON.