# Scrape apartments for rent on Montreal Island from Centris

**Use case:** 

Pulls current Centris.ca rental listings on Montreal Island with monthly rent, address, rooms, features and photos for each unit. Relocation agents and property managers use it to see the whole rental market in one sheet instead of paging the site.

## Input

```json
{
  "searchUrl": "https://www.centris.ca/en/properties~for-rent~montreal-island",
  "maxResults": 300
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "detailed_sheet": {
    "label": "Detailed Sheet",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price ($)",
    "format": "integer"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "string"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "string"
  },
  "rooms": {
    "label": "Rooms",
    "format": "string"
  },
  "area": {
    "label": "Area",
    "format": "string"
  },
  "lot_area": {
    "label": "Lot Area",
    "format": "string"
  },
  "year_built": {
    "label": "Year Built",
    "format": "string"
  },
  "parking": {
    "label": "Parking",
    "format": "string"
  },
  "pool": {
    "label": "Pool",
    "format": "string"
  },
  "move_in_date": {
    "label": "Move-in Date",
    "format": "string"
  },
  "additional_features": {
    "label": "Additional Features",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "maps_url": {
    "label": "Google Maps",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "images": {
    "label": "Image URLs",
    "format": "array"
  },
  "characteristics": {
    "label": "All Characteristics",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [Centris.ca Scraper: Quebec Real Estate Listings & Photos](https://apify.com/fayoussef/centris-property-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/centris-property-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/fayoussef/centris-property-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
