search_rental_listings
centris.caReturns paginated residential rental summaries from https://centris.ca across Quebec, with optional location and monthly price filters plus IDs for full-detail lookup.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_rental_listings?
Returns paginated residential rental summaries from https://centris.ca across Quebec, with optional location and monthly price filters plus IDs for full-detail lookup. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass location, minimum_monthly_rent, maximum_monthly_rent, 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,
"address_lines": [
"<string>"
],
"property_type": "<string>",
"has_virtual_tour": true,
"organization_name": "<string>",
"primary_photo_url": "<string>",
"sale_price_amount": 0,
"description_teaser": "<string>",
"monthly_rent_amount": 0,
"monthly_rent_display": "<string>"
}
],
"page_size": 0,
"total_pages": 0,
"total_results": 0,
"location_match": "<string>",
"returned_count": 0,
"maximum_monthly_rent": 0,
"minimum_monthly_rent": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/e9574d2c-3543-4c05-a6d2-38be5e25c733/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e9574d2c-3543-4c05-a6d2-38be5e25c733",
"variables": {
"location": "",
"minimum_monthly_rent": 0,
"maximum_monthly_rent": 999999999999,
"page": 1
}
}'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="e9574d2c-3543-4c05-a6d2-38be5e25c733") — the "search_rental_listings" function, which returns paginated residential rental summaries from https://centris.ca across Quebec, with optional location and monthly price filters plus IDs for full-detail lookup.. It takes location (str), minimum_monthly_rent (int), maximum_monthly_rent (int), page (int). Return the result as structured JSON.