Marketplace
No threads yet
Live

search_rental_properties

domain.com.au

Searches https://domain.com.au for rental properties in an Australian suburb. Returns paginated listing records with weekly rent, addresses, features, branding, agents, images, inspections, and source pagination metadata.

Parameters2
Runs9
Updated9d ago
Failing9 runs · 55.5% 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_rental_properties?

Searches https://domain.com.au for rental properties in an Australian suburb. Returns paginated listing records with weekly rent, addresses, features, branding, agents, images, inspections, and source pagination metadata. 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

{
  "meta": {
    "location": "<string>",
    "totalPages": 0,
    "currentPage": 0,
    "listingType": "<string>",
    "resultsOnPage": 0,
    "totalListings": 0
  },
  "listings": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ba408cff-7961-4672-bd68-b21ffb6cfeeb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ba408cff-7961-4672-bd68-b21ffb6cfeeb",
    "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="ba408cff-7961-4672-bd68-b21ffb6cfeeb") — the "search_rental_properties" function, which searches https://domain.com.au for rental properties in an Australian suburb. Returns paginated listing records with weekly rent, addresses, features, branding, agents, images, inspections, and source pagination metadata..

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