Marketplace
No threads yet
Live

search_residential_listings

centris.ca

Search residential real estate listings for sale on https://centris.ca across Quebec. Returns paginated listing summaries with Centris IDs, URLs, prices, addresses, property details, photos, and description teasers.

Parameters6
Runs17
Updated10d ago
Operational17 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_residential_listings?

Search residential real estate listings for sale on https://centris.ca across Quebec. Returns paginated listing summaries with Centris IDs, URLs, prices, addresses, property details, photos, and description teasers. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass location, property_type, min_price, max_price, keywords, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "keywords": "<string>",
  "listings": [
    {
      "url": "<string>",
      "title": "<string>",
      "badges": [
        "<string>"
      ],
      "address": "<string>",
      "currency": "<string>",
      "features": {},
      "latitude": 0,
      "longitude": 0,
      "listing_id": "<string>",
      "photo_count": 0,
      "price_amount": 0,
      "address_lines": [
        "<string>"
      ],
      "price_display": "<string>",
      "property_type": "<string>",
      "primary_photo_url": "<string>",
      "description_teaser": "<string>"
    }
  ],
  "page_size": 0,
  "total_pages": 0,
  "total_results": 0,
  "location_match": "<string>",
  "property_types": [
    "<string>"
  ],
  "returned_count": 0,
  "keyword_filter_mode": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/220439a1-512c-4e45-9829-893e775c95d9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "220439a1-512c-4e45-9829-893e775c95d9",
    "variables": {
        "location": "",
        "property_type": "",
        "min_price": 0,
        "max_price": 999999999999,
        "keywords": "",
        "page": 1
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="220439a1-512c-4e45-9829-893e775c95d9") — the "search_residential_listings" function, which search residential real estate listings for sale on https://centris.ca across Quebec. Returns paginated listing summaries with Centris IDs, URLs, prices, addresses, property details, photos, and description teasers..

It takes location (str), property_type (str), min_price (int), max_price (int), keywords (str), page (int). Return the result as structured JSON.