What Happens When 10 Million Tourists Can't Pay in India
India built something most countries only talk about. The Unified Payments Interface (UPI) processes over 10 billion transactions a month. From high-end boutiques in Mumbai to coconut tea vendors on a remote Kerala beach, everyone pays by scanning a QR code.
Cash is no longer king. It's practically an inconvenience.
But this system has a structural flaw: it is entirely walled off from the rest of the world. If you are one of the ~10 million foreign tourists who visit India annually, you are locked out.
This is the research that led me down the rabbit hole of building PayIndia.
The Reality on the Ground
Picture this: You land in Bengaluru. You try to take an auto-rickshaw. The driver has no change for a 500-rupee note, assuming you even managed to get cash from the single working ATM at the airport. He points to his UPI QR code.
You open your bank app. Nothing. You open Apple Pay. Nothing.
You try to download PhonePe or Google Pay India. They require an Indian phone number linked to an Indian bank account.
You are effectively financially stranded in one of the most technologically advanced economies on earth.
The Scale of the Problem: International tourist arrivals in India injected approximately $30 billion USD into the economy pre-pandemic. Yet, the friction of simply buying a bottle of water remains unreasonably high.
Why Current Solutions Fall Short
The National Payments Corporation of India (NPCI) knows this is a problem, but the proposed solutions are deeply flawed cludges.
The Prepaid Card Illusion (CheqUPI)
There are services like CheqUPI that allow tourists to access the network. But the UX is completely broken.
- You must download a specific app.
- You must undergo a full KYC process (scanning passports, uploading visas).
- You have to top-up a digital wallet using your foreign credit card, paying foreign exchange markup plus a hefty convenience fee (often 3-5%).
It treats a simple payment as a complex remittance. It requires a tourist who just wants to buy a $2 chai to pre-load capital into a walled garden.
The Bank Account Requirement
Some banks offer "tourist accounts" attached to NRO/NRE structures, but this requires an in-person visit to a branch, physical paperwork, and hours of waiting. For a two-week holiday, it is a non-starter.
The Alipay Contrast
China faced a similar problem with WeChat Pay and Alipay. For years, tourists carried wads of cash because they couldn't bind foreign cards.
Eventually, both platforms relented and built elegant "Tour Pass" systems. You simply bind your Visa or Mastercard to the app. When you scan a QR code, the platform charges your foreign card seamlessly in the background and settles the merchant in local currency.
Why hasn't India done this? Because UPI is an interoperability protocol, not a closed-loop wallet like Alipay. There is no central entity to absorb the interchange fees associated with international credit cards.
The PayIndia Hypothesis
When I started researching PayIndia, the technical challenge was clear: we needed a bridge that behaves like a UPI App to the merchant, but acts as a standard card-not-present merchant gateway to the tourist's foreign bank.
// The conceptual routing
async function processTouristPayment(qrCode, foreignCard, amountINR) {
// 1. Decode UPI intent
const merchantVPA = parseUPIQR(qrCode);
// 2. Calculate dynamic FX rate and apply minimal spread
const amountUSD = convertToUSD(amountINR) + serviceFee;
// 3. Charge the foreign card via Stripe/Adyen
const charge = await stripe.charges.create({ amount: amountUSD });
if (charge.success) {
// 4. Trigger domestic payout to merchant via banking partner API
return await upiPartner.initiatePayout(merchantVPA, amountINR);
}
}The friction isn't writing the code; the friction is the regulatory framework. Money laundering laws (FEMA) and strict RBI guidelines make cross-border atomic settlement very difficult for startups without banking licenses.
But the gap is too large to ignore. Ten million tourists. Thirty billion dollars. Millions of merchants losing out on sales because the friction to pay is too high.
I'm building something for this. It won't happen in 30 days, but it has to happen.