QRQRCrack
Razorpay Integration Guide

Payment QR Code with Razorpay — For India

Quick Answer

To create a Razorpay payment QR code: create a Razorpay Payment Link from your dashboard, copy the link (rzp.io/l/xxxx), then generate a QR code from it on QRCrack. Customers scan and pay via UPI, cards, or netbanking.

Step-by-Step Guide

  1. 1

    Log in to your Razorpay Dashboard (dashboard.razorpay.com).

  2. 2

    Go to Payment Links → Create Payment Link.

  3. 3

    Enter the amount, description, and your customer's details (or leave blank for a generic payment link).

  4. 4

    Click 'Create Payment Link' — Razorpay generates a link like https://rzp.io/l/xxxx.

  5. 5

    Copy the payment link.

  6. 6

    Go to QRCrack → URL QR Code Generator → paste your Razorpay link.

  7. 7

    Customize with Razorpay blue (#3395FF) on white, or your brand colors. Download as PNG or SVG.

  8. 8

    Display at your checkout counter, on invoices, or at events. Customers scan and pay via UPI apps, credit/debit cards, or netbanking.

Code Snippet

Razorpay Integration
// Razorpay API: Create a payment link programmatically
const Razorpay = require('razorpay');

const razorpay = new Razorpay({
  key_id: 'rzp_live_YOUR_KEY_ID',
  key_secret: 'YOUR_KEY_SECRET'
});

async function createPaymentLink(amount, description, customerName, customerEmail) {
  const paymentLink = await razorpay.paymentLink.create({
    amount: amount * 100, // in paise (INR)
    currency: 'INR',
    description: description,
    customer: {
      name: customerName,
      email: customerEmail,
    },
    notify: {
      sms: true,
      email: true
    },
    reminder_enable: true,
    callback_url: 'https://yoursite.com/payment-success',
    callback_method: 'get'
  });

  console.log('Payment Link URL:', paymentLink.short_url);
  // Generate a QR code from paymentLink.short_url on QRCrack
  return paymentLink.short_url;
}

createPaymentLink(999, 'Website Design Service', 'Amit Kumar', 'amit@example.com');

Ready to generate your Razorpay QR code?

Free, no signup, no watermarks. Custom colors and logo supported.

Generate QR Code — Free

Frequently Asked Questions

Can I accept UPI payments with a Razorpay QR code?

Yes. Razorpay payment links support UPI (Google Pay, PhonePe, Paytm, BHIM), cards, and netbanking — all from a single QR code.

What's the difference between a UPI QR and Razorpay QR?

A UPI QR (from QRCrack's UPI tool) directly accepts UPI payments only. A Razorpay payment link QR accepts UPI + cards + netbanking + EMI — more payment options for your customers.

Can I use Razorpay QR codes for my offline store?

Yes. Print the QR code and place at your counter. Customers scan and pay digitally without cash.

Does Razorpay charge a fee for payment link QR codes?

Razorpay charges a transaction fee (typically 2% for domestic cards, lower for UPI via specific plans). No fee to generate the QR code itself.

More Integration Guides

Want API access + no ads? Pro coming soon.