Create beautiful, fully customizable subscription payment pages with recurring billing. Perfect for SaaS, memberships, and subscription businesses.
Explore different payment page themes and see how they look in real-time. Each theme is fully customizable.
Complete subscription
Then $29.99 monthly
// Create a monthly subscription payment page
const subscriptionPage = await checkoutqr.paymentPages.create({
type: "subscription",
plan: {
amount: 2999, // $29.99 in cents
currency: "usd",
interval: "month",
interval_count: 1
},
setup_fee: 999, // $9.99 setup fee
theme: "neumorphism", // or "retrowave", "dos", "apple"
customization: {
primaryColor: "#6366f1",
backgroundColor: "#f1f5f9",
borderRadius: "12px",
fontFamily: "Inter, sans-serif"
},
trial_period_days: 7, // Optional 7-day free trial
success_url: "https://example.com/welcome",
cancel_url: "https://example.com/pricing"
});
console.log(subscriptionPage.url); // Redirect customer here