search_rental_listings_with_details
rentals.caSearches rental listings on https://rentals.ca with city, bed/bath, price, and date filters, and returns full per-listing property details. Uses one expanded GraphQL page query so each result includes concrete floor_plans records, amenities, media, contacts, parking, and metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_rental_listings_with_details?
Searches rental listings on https://rentals.ca with city, bed/bath, price, and date filters, and returns full per-listing property details. Uses one expanded GraphQL page query so each result includes concrete floor_plans records, amenities, media, contacts, parking, and metadata. 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, date_start, date_end, page, timeout_seconds 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/7dfc4628-1350-4112-8910-40110dc74cd8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "7dfc4628-1350-4112-8910-40110dc74cd8",
"variables": {
"city": "toronto",
"bedrooms": null,
"bathrooms": null,
"price_min": null,
"price_max": null,
"date_start": "",
"date_end": "",
"page": 1,
"timeout_seconds": 55
}
}'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="7dfc4628-1350-4112-8910-40110dc74cd8") — the "search_rental_listings_with_details" function, which searches rental listings on https://rentals.ca with city, bed/bath, price, and date filters, and returns full per-listing property details. Uses one expanded GraphQL page query so each result includes concrete floor_plans records, amenities, media, contacts, parking, and metadata.. It takes city (str), bedrooms (float | None), bathrooms (float | None), price_min (int | None), price_max (int | None), date_start (str), date_end (str), page (int), timeout_seconds (int). Return the result as structured JSON.