Zepto customers came for groceries in minutes. Magic Checkout lets them pay in one tap with saved addresses, preferred payment methods, smart UPI routing, and fewer reasons to drop before the order is placed.
<script src="https://checkout.razorpay.com/v1/magic-checkout.js"></script>
<script>
const options = {
key: "rzp_live_ZEPTO_STORE",
order_id: "order_zepto_486",
amount: 48600,
currency: "INR",
prefill: {
contact: customer.phone,
email: customer.email
},
notes: {
fulfilment_speed: "minutes",
channel: "zepto_app"
}
};
const checkout = new Razorpay(options);
checkout.open();
</script>