get_rental_listing_details
rentals.caRetrieves a complete rental property record from https://rentals.ca by base64 listing ID. Returns floor plans and availability, amenities grouped by category, contacts, building and parking details, and property image URLs.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_rental_listing_details?
Retrieves a complete rental property record from https://rentals.ca by base64 listing ID. Returns floor plans and availability, amenities grouped by category, contacts, building and parking details, and property image URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_id and get the result back without maintaining a scraper.
Response
{
"listing": {},
"listing_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/1d801994-2e98-43cb-a9ab-0fd0e97e228c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1d801994-2e98-43cb-a9ab-0fd0e97e228c",
"variables": {
"listing_id": "DEFAULT_LISTING_ID"
}
}'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="1d801994-2e98-43cb-a9ab-0fd0e97e228c") — the "get_rental_listing_details" function, which retrieves a complete rental property record from https://rentals.ca by base64 listing ID. Returns floor plans and availability, amenities grouped by category, contacts, building and parking details, and property image URLs.. It takes listing_id (str). Return the result as structured JSON.