search_houses_by_keywords
centris.caReturns full listing details for Montréal single-family houses from https://centris.ca whose room count and description match supplied keyword filters.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_houses_by_keywords?
Returns full listing details for Montréal single-family houses from https://centris.ca whose room count and description match supplied keyword filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass minimum_room_count, keywords, keyword_match_mode, max_candidates, max_results, candidate_start_page, max_workers and get the result back without maintaining a scraper.
Response
{
"keywords": [
"<string>"
],
"listings": [
{
"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>"
}
]
}
],
"location": "<string>",
"property_type": "<string>",
"returned_count": 0,
"candidates_failed": 0,
"keyword_match_mode": "<string>",
"minimum_room_count": 0,
"candidate_start_page": 0,
"candidates_evaluated": 0,
"candidate_pages_scanned": 0,
"total_candidate_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/b3556beb-b1e1-471c-976f-ad00f7d0227b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b3556beb-b1e1-471c-976f-ad00f7d0227b",
"variables": {
"minimum_room_count": 8,
"keywords": "bachelor, intergenerational",
"keyword_match_mode": "any",
"max_candidates": 60,
"max_results": 10,
"candidate_start_page": 1,
"max_workers": 8
}
}'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="b3556beb-b1e1-471c-976f-ad00f7d0227b") — the "search_houses_by_keywords" function, which returns full listing details for Montréal single-family houses from https://centris.ca whose room count and description match supplied keyword filters.. It takes minimum_room_count (int), keywords (str), keyword_match_mode (str), max_candidates (int), max_results (int), candidate_start_page (int), max_workers (int). Return the result as structured JSON.