ADVERTISEMENT

Philippines Real Estate Awards launch as Dot Property and Lamudi unite their Southeast Asia Awards platforms

By MBrand
Published Mar 13, 2026 12:14 pm
Dot Property and Lamudi today announced the launch of the Philippines Real Estate Awards 2026, as part of the newly introduced Southeast Asia Real Estate Awards by Dot Property and Lamudi, a regional platform designed to recognise the developers, projects and real estate professionals shaping the future of Southeast Asia’s rapidly growing property industry.
The announcement follows the launch of the Southeast Asia Real Estate Awards platform at a regional press conference held at the Four Seasons Hotel Bangkok at Chao Phraya River, marking the next chapter in one of the region’s most established real estate recognition programmes.
The Philippines Real Estate Awards build on more than a decade of real estate awards program organized by Dot Property and Lamudi across Southeast Asia. The Dot Property Awards have recognized leading developers and projects across Thailand, Vietnam and the Philippines for over ten years, while Lamudi has also organized prestigious property awards program in the Philippines and Indonesia.
By bringing these long-running programmes together under the Southeast Asia Real Estate Awards by Dot Property and Lamudi, the new platform combines the experience, reach and credibility of two of the region’s most recognised property awards initiatives.
Dot Property and Lamudi now operate together under SEA Connect, Southeast Asia’s largest proptech ecosystem and home to some of the region’s most influential digital property platforms. Both Dot Property and Lamudi hold market-leading positions in the Philippines, connecting developers and agencies with one of the country’s largest online audiences of property seekers.
Across the region, the group’s platforms attract more than 100 million property seekers each year, generating over two million enquiries annually from active buyers and investors searching for property opportunities.
The Philippines Real Estate Awards are designed to help this vast audience of property seekers navigate the country’s evolving property landscape by highlighting the developers and projects that stand out for quality, design, innovation and long-term value.
Through the awards platform, Dot Property and Lamudi aim to showcase the projects most worthy of buyers’ attention—helping investors and homebuyers identify the developments setting the benchmark across the Philippine real estate sector.
For developers, this recognition provides a unique opportunity to have their projects highlighted in front of one of the region’s largest audiences of active property buyers and investors.
Celebrating the Philippines’ leading developers
Tanya Peralta-Yu, country manager of Dot Property and Lamudi Philippines, said the awards provide an important platform for recognizing the achievements of the country’s real estate industry.
“The Philippine real estate sector continues to demonstrate strong growth and resilience, supported by a vibrant residential market and increasing investor interest.
Through the Philippines Real Estate Awards, we aim to recognise the developers and projects that are setting new standards for quality and innovation in the country’s property industry, while also connecting them to the wider Southeast Asia Real Estate Awards platform.”
National winners from the Philippines Real Estate Awards will go on to compete at the Southeast Asia Real Estate Awards Grand Final, where leading developers and projects from across the region will be recognized.
Strengthening credibility and evaluation standards
The 2026 program introduces a strengthened evaluation framework designed to ensure recognition reflects genuine industry achievement.
Entries will be assessed through a structured judging process supported by experienced awards consultants and industry professionals, combining sector expertise with clearly defined evaluation criteria.
Major industry categories will remain selective to preserve the long-term value and credibility of the awards.
Expanding recognition across the Philippine property industry
The Philippines Real Estate Awards recognize achievements across a wide range of categories including:
• Property development
• Architecture and design
• Sustainability and innovation
• Residential projects
• Real estate agency performance
This year will also mark the launch of the Philippines Real Estate Agent Awards, providing real estate agents across the country with their own dedicated platform for recognition.
Peralta-Yu added: “The launch of the Philippines Real Estate Agent Awards is an exciting milestone for the industry, giving agents their own stage for the first time to celebrate their contribution to the property sector.”
Entries for the Philippines Real Estate Awards 2026 are now open.

Related Tags

Philippines Real Estate Awards Dot Property Lamudi Tanya Peralta-Yu
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.