01 · Inline
Inline
Open a modal over your page. SPAs, custom checkout UX, marketplaces.
Full Inline guide →<script src="https://js.zevpaycheckout.com/v1/inline.js"></script>
<script>
const zp = new ZevPay.ZevPayCheckout();
document.getElementById("pay").onclick = () =>
zp.checkout({
apiKey: "pk_live_…",
email: "ada@acme.ng",
amount: 250000, // ₦2,500 in kobo
onSuccess: (ref) => fetch("/api/confirm/" + ref),
});
</script>