get_listing_details
centris.caRetrieve full details for a residential property listing from https://centris.ca by Centris ID. Returns price, address, property type, room counts, description, property and financial details, photo URLs, location context, and listing brokers.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_listing_details?
Retrieve full details for a residential property listing from https://centris.ca by Centris ID. Returns price, address, property type, room counts, description, property and financial details, photo URLs, location context, and listing brokers. 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
{
"url": "<string>",
"badges": [
"<string>"
],
"nearby": [
"<string>"
],
"address": "<string>",
"currency": "<string>",
"latitude": 0,
"longitude": 0,
"listing_id": "<string>",
"photo_urls": [
"<string>"
],
"walk_score": 0,
"description": "<string>",
"photo_count": 0,
"room_counts": {},
"price_amount": 0,
"source_title": "<string>",
"price_display": "<string>",
"property_type": "<string>",
"location_links": {},
"property_facts": {},
"characteristics": {},
"listing_brokers": [
{}
],
"financial_details": [
{
"title": "<string>",
"values": {},
"time_unit": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/f73291df-9206-4a1f-9f5c-5cae689a8389/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f73291df-9206-4a1f-9f5c-5cae689a8389",
"variables": {
"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="f73291df-9206-4a1f-9f5c-5cae689a8389") — the "get_listing_details" function, which retrieve full details for a residential property listing from https://centris.ca by Centris ID. Returns price, address, property type, room counts, description, property and financial details, photo URLs, location context, and listing brokers.. It takes listing_id (str). Return the result as structured JSON.