Marketplace
No threads yet
Live

search_plex_listings_montreal

centris.ca

Returns Island of Montréal duplex, triplex, quadruplex, and quintuplex listing summaries for sale from https://centris.ca with price filters and pagination.

Parameters3
Runs6
Updated3d ago
Operational6 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_plex_listings_montreal?

Returns Island of Montréal duplex, triplex, quadruplex, and quintuplex listing summaries for sale from https://centris.ca with price filters and pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass min_price, max_price, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "currency": "<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>",
      "has_virtual_tour": true,
      "primary_photo_url": "<string>",
      "description_teaser": "<string>"
    }
  ],
  "location": "<string>",
  "max_price": 0,
  "min_price": 0,
  "page_size": 0,
  "total_pages": 0,
  "total_results": 0,
  "property_types": [
    "<string>"
  ],
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5bbbe216-cf31-4ef9-9b5c-099456e672b7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5bbbe216-cf31-4ef9-9b5c-099456e672b7",
    "variables": {
        "min_price": 0,
        "max_price": 1500000,
        "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="5bbbe216-cf31-4ef9-9b5c-099456e672b7") — the "search_plex_listings_montreal" function, which returns Island of Montréal duplex, triplex, quadruplex, and quintuplex listing summaries for sale from https://centris.ca with price filters and pagination..

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