Mada secures $1.55m 'pre-seed' funding to redefine digital BNPL in region

AMMAN — Mada, a digital Buy Now, Pay Later (BNPL) provider, announced the closing of a $1.55 million "pre-seed" funding round led by 50 per cent by Saudi Vision Ventures and 50 per cent by Lebanese D-Investments.

Mada signed four Memorandum of Understanding (MoU) last week on the sideline of the FinTech Festival held in Amman, and four companies from private sectors; JKB pay, U wallets, Get to Pay, and Energy Digital Media.

The investments aims to accelerate Mada’s product development, strengthen its technology infrastructure and support its ambition to become a "leader" in the digital payments ecosystem, according to Mada statement.

Mada brings together financial expertise and technology innovation. The company is among the early participants in the Jordan Regulatory Sandbox (JoRegBox), under the supervision of the Central Bank of Jordan (CBJ).

Mada is currently in the Minimum Viable Product (MVP) testing phase within the Sandbox environment. Upon successful graduation, the product will be licensed, regulated and launched commercially. Previously operating through "traditional" BNPL contracts, Mada has now shifted its focus to building a "fully" digital BNPL platform.

The service enables consumers to split purchases into simple, interest-free installments with no hidden fees, while merchants benefit from improved sales conversions and higher average basket sizes.The digital product remains under testing, meaning Mada is not yet operating commercially through the application.

To date, Mada has partnered with over 140 merchants and served more than 2,500 consumers through its traditional BNPL offerings. These learnings, combined with the Sandbox pilot, are shaping its digital-first model, according to Mada.

Founder and CEO of Mada, Mohammad Merie said "At Mada, we are building more than a payment tool—we are creating a financial engine for digital prosperity. Our mission is to empower consumers to better manage their income while enabling merchants to unlock sustainable growth."

He added that "By progressing through the Jordan Regulatory Sandbox, we ensure our solution is tested, validated, and future-ready for regulated launch. This is only the beginning of Mada’s journey to become one of the region’s most trusted digital payment platforms."

Co-Founder of Mada, Issa Ramadan noted that "Fintech innovation must balance vision with responsibility. Advancing through the Jordan Regulatory Sandbox allows us to refine the customer journey in a controlled environment before scaling to the wider market."

He said that "Mada is designed to be more than a BNPL service, it is a catalyst for greater financial inclusion and a transparent digital economy."

Founding Partner and CEO of Vision Ventures, Qais Al Essa said "We are always committed to supporting innovation and empowering communities."

He added that "Our investment in Mada reflects our confidence in the growth of the digital BNPL sector in Jordan, following our successful experience with Tamara in Saudi Arabia. We see the same potential unfolding here in Jordan and the region."

CEO of D-Investments, Hasan Danash said "At D-Investments, we look for ventures that combine innovation with the potential to deliver real economic value."

He added "Mada embodies this balance by addressing a clear market need with a scalable and transparent BNPL model. We believe Mada is well positioned to become a key player in the digital payments space, driving both consumer empowerment and merchant growth across the region."

COO of D-Investments, Ali Danash said "Mada combines innovation with strong execution, offering a BNPL model that is transparent, scalable, and built for regional growth. By empowering consumers and strengthening merchants, Mada is positioned to become a trusted leader in digital payments."

Mada's vision extends beyond Jordan, with plans to expand into new regional markets and deliver transparent, accessible and technology-driven BNPL solutions.

The company remains focused on empowering consumers and merchants alike, while advancing financial inclusion and accelerating digital adoption across the region.

.col-lg-12.second .opinion-widget{border-top:1px solid #D0D0D0;} #widget_1623 .opinions-title {font-size:32px;} #widget_1623 .opinions-title a{font-size:32px;} .first-author{ background-color:#ecedef; } .first-opinion-author-name{ background-color:white; width:max-content; padding:5px; }
.epaper-separator{ height: 1px; width: 100%; background-color: #D0D0D0; margin: 15px 0; }

Today’s Paper

.related-articles .article-widget-sm .article-title{font-size:16px;-webkit-line-clamp:3;} .related-articles .layout-ratio{padding-bottom:55%;}
.alert-success { color :#A3656F ; } .alert-danger { color : red ; } .footer { font-family:Myriad Pro,Arial; } .newspaper-footer{ visibility:hidden; } .socialFixOuter { position: fixed; top: 50%; margin-top: 40px; right: 0; transition: .2s; z-index: 20; height: 217px; width: 40px; } .socialFix { height: 30px; width: 30px; display: block; position: relative; cursor: pointer; background-size: 18px 18px; transition: .2s; background-position: center; background-repeat: no-repeat; border-radius: 2px; margin-top: 1px; } .socialFix:hover { width: 40px; margin-left: -10px; } .app-badge-img { height: 36px; width: auto; } @media (max-width: 768px) { .app-badge-img { height: 32px; } .app-badges { justify-content: center !important; } }
document.addEventListener("DOMContentLoaded", function () { const socialFix = document.querySelector(".socialFixOuter"); if (!socialFix) return; let firstInteraction = false; let hideTimeout = null; function checkMobileScreen() { if (window.innerWidth < 768) { socialFix.style.display = "none"; } else { socialFix.style.display = "block"; } } checkMobileScreen(); window.addEventListener("resize", checkMobileScreen); function handleFirstInteraction() { if (firstInteraction) return; if (window.innerWidth < 768) return; firstInteraction = true; socialFix.style.right = "-25px"; } socialFix.addEventListener("mouseenter", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); socialFix.style.right = "0"; }); socialFix.addEventListener("mouseleave", function () { if (window.innerWidth < 768) return; if (hideTimeout) clearTimeout(hideTimeout); hideTimeout = setTimeout(() => { socialFix.style.right = "-25px"; }, 500); }); ["click", "touchstart"].forEach((evt) => { socialFix.addEventListener(evt, handleFirstInteraction); }); }); function validateEmail(email) { if (email.length > 255) return false; const emailRegex = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/; if (!emailRegex.test(email)) return false; if (email.includes('..') || email.startsWith('.') || email.endsWith('.')) return false; return true; } function sanitizeInput(input) { input = input.replace(/<[^>]*>/g, ''); input = input.replace(/javascript:/gi, ''); input = input.replace(/on\w+\s*=/gi, ''); input = input.replace(/[<>"'&(){}[\]]/g, ''); return input.trim(); } document.addEventListener('DOMContentLoaded', function () { function showModal(message, type) { const messageContainer = document.getElementById("messageContainerFooter"); messageContainer.textContent = message; messageContainer.className = `alert alert-${type} mt-3`; messageContainer.classList.remove("d-none"); setTimeout(() => { messageContainer.classList.add("d-none"); }, 5000); } document.getElementById("emailFormFooter").addEventListener("submit", function(event) { event.preventDefault(); const emailInput = document.getElementById("emailFooter"); const email = sanitizeInput(emailInput.value.trim()); if (!validateEmail(email)) { showModal('Invalid email format', 'danger'); return; } const formData = new FormData(); formData.append('email', email); fetch('/subscribeNewsletter', { method: "POST", body: formData, headers: { "Accept": "application/json", "X-Requested-With": "XMLHttpRequest" } }) .then(response => { if (!response.ok) { showModal("Error submitting email. Try again.", 'danger'); } return response.json(); }) .then(data => { showModal(data.message, 'success'); }) .catch(error => { showModal("Error submitting email. Try again.", 'danger'); }); }); });