Multi-Merchant UPI Payment API

Accept UPI payments,
straight to your own account.

Connect your own UPI ID once. Every payment lands directly with you and gets marked "paid" automatically — no manual checking, no middleman holding your money.

Direct to your UPI ID Automatic verification No KYC, no signup fee

How it works

Three steps — set up once, runs on its own after that.

01

Generate a QR

Call one API endpoint with an amount, get back a UPI QR code for your customer to scan.

02

Customer pays you directly

Any UPI app works — GPay, PhonePe, Paytm, BHIM. Money reaches your own UPI ID instantly.

03

Order confirmed automatically

Within moments the order flips to "paid" on its own — you never have to manually confirm a payment.

Why merchants trust this

Built so you're always the one in control of your own money.

Money never passes through us

Every QR pays your own UPI ID directly — we never hold or touch your funds.

Isolated per merchant

Your orders and API key are kept fully separate from every other merchant on the platform.

Full control, anytime

Disconnect or reset your account access whenever you want, no questions asked.

Orders auto-expire

Unpaid QR codes expire after a few minutes, so stale orders never sit around waiting to be misused.

API Reference

Two calls, same shape as any standard UPI collection API. Register to get your api_key from your dashboard.

GET

Create an order

/api/create_order.php?amount=10&api_key=…
Example
curl "https://fampay.multiuser.shop/api/create_order.php
?amount=99&api_key=FAM_your_key_here"
Response
{
  "status": "success",
  "data": {
    "order_id": "ORD...",
    "qr_url": "https://.../qr_image_public.php?...",
    "upi_id": "you@fam",
    "amount": "99",
    "expires_at": "2026-04-23T00:46:00+05:30"
  }
}
GET

Check payment status

/api/verify.php?order_id=…&api_key=…
Example
curl "https://fampay.multiuser.shop/api/verify.php
?order_id=ORD...&api_key=FAM_your_key_here"
Response
{
  "status": "success",
  "data": {
    "order_id": "ORD...",
    "amount": 99,
    "utr": "301268197755",
    "payment_time": "2026-04-23T00:42:12+05:30"
  }
}
Bonus

Ready-made checkout page (no code needed)

Skip the API calls entirely — send your customer this link and it shows the QR and flips to "✅ Payment Successful" on its own.

https://fampay.multiuser.shop/checkout.php?order_id=ORD...