Slider with alias home-hero not found. There is nothing to show here!

Amar properties

Montreal-based diversified real estate professional services, investment
management and consultancy company

Welcome

Various range of properties, expert in rental and property management. An extensive portfolio of medium to luxurious high end, situated prime location in the city of Montreal.

Featured Luxury Property

Our Services

Residential Property Management

Managing properties is more than just maintaining buildings—it’s about creating exceptional living experiences. Whether you own multi-unit residential buildings or individual condominiums, our professional property management services ensure seamless operations, tenant satisfaction, and maximized returns.

Real Estate Done Right

Nervous about your finding a new home or manage your property ? Don’t be. Whether you're getting ready to Rent or property management or just looking for some answers, our skilled experts ensure you get the best experience possible. It’s what we love to do.

Need accommodation

we provide accommodations based on your needs and availability located in prime locations of Montreal. Trust us to find you what you need fast. fill our the rental inquiry form, So that we can offer tailored options as per your requirements.

Rely on Expertise

If you have questions about affordability, credit, property management, construction management or income property, trust us to find you what you need. We make sure you feel confident and educated every step of the way.

Testimonials

Impeccable communication , Reliable, efficient and instant replies. Highly recommended!
Dr. Chaitanya A.
Amar really helped me move at a difficult time of the year right around the new year holidays and was super kind and quick to respond! Keeping in touch with me almost everyday to ensure a smooth transition from checking out the place to moving in! I’m super lucky to have had the pleasure of working with Amar in my transition into moving to Canada!
Noah Bish
Amar gives an excellent service and is very kind. I needed to move quickly and he helped me achieve it. I recommend him without a doubt.
Diana C.
It was a great pleasure to deal with Amar. He proved to be very knowledgeable in the real estate market, offering a super professional service, and after-service... I would recommend Amar with no hesitation and will definitely continue dealing with him. Cheers, keep it up.
A. Haddad

Rental Inquiry form


// Replace State/county with Province on property pages if ( is_singular( 'property' ) ) { add_filter( 'gettext', function( $translated ) { $translated = str_replace( 'State/county:', 'Province:', $translated ); return $translated; }); } // Add URL input field to sub-listings add_filter( 'fave_get_meta_fields_multi_units', function( $fields ) { $fields['fave_url'] = array( 'label' => 'URL', 'placeholder' => 'Enter the URL', 'type' => 'text' ); return $fields; }); // Replace "State/county:" with "Province:" using text node walker (function() { function replaceText(node) { if (node.nodeType === Node.TEXT_NODE) { node.textContent = node.textContent.replace(/State\/county:/g, 'Province:'); } else { Array.from(node.childNodes).forEach(replaceText); } } // Initial replacement when script loads replaceText(document.body); // Watch for new content added to the page var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { mutation.addedNodes.forEach(function(node) { if (node.nodeType === Node.ELEMENT_NODE || node.nodeType === Node.TEXT_NODE) { replaceText(node); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); // Add URL input field to sub-listings form jQuery(document).ready(function($) { // Find all sub-listing Availability Date labels $('label:contains("Availability Date")').each(function() { var availabilityLabel = $(this); var availabilityInput = availabilityLabel.next('input, .input-group'); // Create URL field HTML var urlField = ''; // Insert URL field after Availability Date availabilityInput.after(urlField); }); });