Marketplace
No threads yet
Live

search_rental_listings_by_city

rentals.ca

Searches https://rentals.ca for rental listings in a Canadian city or neighbourhood, with optional bedroom, bathroom, price, and page filters. Returns paginated listing summaries, coordinates, rent and bed/bath ranges, and total result counts.

Parameters6
Runs14
Updated10d ago
Degraded14 runs · 92.8% 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_listings_by_city?

Searches https://rentals.ca for rental listings in a Canadian city or neighbourhood, with optional bedroom, bathroom, price, and page filters. Returns paginated listing summaries, coordinates, rent and bed/bath ranges, and total result counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, bedrooms, bathrooms, price_min, price_max, page and get the result back without maintaining a scraper.

Response

{
  "city": "<string>",
  "page": 0,
  "listings": [
    {}
  ],
  "page_info": {},
  "page_size": 0,
  "total_count": 0,
  "focused_place": {},
  "related_cities": [
    {}
  ],
  "total_floor_plan_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/dbe5649e-6b98-45fc-aa63-f020da7cf258/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "dbe5649e-6b98-45fc-aa63-f020da7cf258",
    "variables": {
        "city": "toronto",
        "bedrooms": null,
        "bathrooms": null,
        "price_min": null,
        "price_max": null,
        "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="dbe5649e-6b98-45fc-aa63-f020da7cf258") — the "search_rental_listings_by_city" function, which searches https://rentals.ca for rental listings in a Canadian city or neighbourhood, with optional bedroom, bathroom, price, and page filters. Returns paginated listing summaries, coordinates, rent and bed/bath ranges, and total result counts..

It takes city (str), bedrooms (float | None), bathrooms (float | None), price_min (int | None), price_max (int | None), page (int). Return the result as structured JSON.