ADVERTISEMENT

QR Ph overtakes cards, e-wallets to dominate Philippine business payments—PayMongo

Published Jul 2, 2026 08:56 am

QR Ph has overtaken cards and e-wallets combined to become the dominant payment method among Philippine businesses, according to fintech firm PayMongo Group, underscoring the country’s accelerating shift toward mobile-first digital payments.

Based on PayMongo’s internal transaction data for the first half of 2026, QR Ph accounted for 55 percent of total payment volume processed on its platform, up sharply from just 16 percent in the same period last year. The payment method posted more than 510-percent year-on-year growth, while cards’ share fell to 19 percent, and e-wallets accounted for 21 percent.

Combined, QR Ph and e-wallets represented 76 percent of total payment volume as well as accounted for nine out of every 10 transactions processed by merchants on the platform.

In a statement on Thursday, July 2, PayMongo said the rapid adoption of QR Ph reflects its interoperability, allowing businesses to accept payments from participating banks and e-wallets using a single QR code.

“For small businesses managing multiple payment terminals or apps, this consolidation simplified everything,” the company said, adding that this may explain why adoption has accelerated fastest among merchants with limited technical capabilities.

The findings were based on nearly 10 million completed transactions processed by PayMongo from January to June this year, an 89-percent increase from about 5.2 million transactions in the same period in 2025.

During the period, the company’s merchant base—which includes online sellers, brick-and-mortar retailers, service providers, as well as enterprises integrating PayMongo into their customer-facing platforms—expanded by 93 percent year-on-year.

While QR Ph emerged as the preferred payment method for everyday transactions, cards continued to dominate larger purchases despite their declining share.

Although cards accounted for 19 percent of payment volume, they represented only seven percent of all transactions, indicating that they remained the preferred payment instrument for high-value purchases, corporate expenses, and one-time large payments.

“Everyday transactions, such as the sari-sari top-up, the food delivery order, the utility bill, have moved entirely to mobile-native payment methods,” PayMongo said.

The company also reported changing behavior among online merchants as more businesses adopted structured e-commerce platforms.

Among merchants using the Shopify platform, the number of businesses grew by 18 percent year-on-year, while payment volume increased by six percent.

Meanwhile, merchants using PayMongo Pages—its no-code online payment page solution—collected nearly ₱1 billion in payments during the first half without requiring website development or application programming integration.

PayMongo said the product has helped remove barriers for small businesses transitioning from cash-only operations to digital payments.

The company likewise reported strong growth in physical retail transactions.

Merchants using its in-store QR Ph solution more than doubled from a year ago, while in-store QR Ph transactions more than tripled year-on-year as adoption spread across retailers, food establishments, and service providers.

PayMongo said these trends indicate that digital payments have expanded beyond e-commerce into neighborhood businesses and physical stores.

The company added that the findings are broadly consistent with the Bangko Sentral ng Pilipinas’ (BSP) push to accelerate digital payments under its financial digitalization roadmap.

“This report captures the velocity of Philippine digital commerce as a whole,” PayMongo said. “The infrastructure is in place, the behavior has changed, and the second half of 2026 will show whether that pace holds or accelerates further.”

According to the company, the report was based on internal transaction records covering January to June 2026 compared with the same period last year. It covered only PayMongo’s Philippine operations and measured completed payments across supported payment methods, including QR Ph, e-wallets, cards, direct online banking, as well as buy now, pay later (BNPL) services.

Related Tags

PayMongo QRPh
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; } }

{{ static_articles_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.