list_ca_city_listings
rentals.caReturns paginated rental listing summaries for a Canadian city from https://rentals.ca. The response shape matches search_listings-style browse results, including totals, pagination info, related cities, and listing summary records.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_ca_city_listings?
Returns paginated rental listing summaries for a Canadian city from https://rentals.ca. The response shape matches search_listings-style browse results, including totals, pagination info, related cities, and listing summary records. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, 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/66ffcf56-b776-4c83-9d1f-5389fa99f8b0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "66ffcf56-b776-4c83-9d1f-5389fa99f8b0",
"variables": {
"city": "toronto",
"page": 1,
"timeout_seconds": 45
}
}'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="66ffcf56-b776-4c83-9d1f-5389fa99f8b0") — the "list_ca_city_listings" function, which returns paginated rental listing summaries for a Canadian city from https://rentals.ca. The response shape matches search_listings-style browse results, including totals, pagination info, related cities, and listing summary records.. It takes city (str), page (int), timeout_seconds (int). Return the result as structured JSON.