Beautiful Stripe checkout pages - Simple & Fast
Host beautiful, mobile-optimized payment pages at checkout.smobi.com/pay/[session_id]
Your backend creates a Stripe Checkout Session with payment details and metadata.
const session = await stripe.checkout.sessions.create({
mode: 'payment',
line_items: [{
price_data: {
currency: 'usd',
product_data: {
name: 'Pizza Delivery',
},
unit_amount: 2500, // $25.00
},
quantity: 1,
}],
success_url: 'https://checkout.smobi.com/pay/success?payment_intent={CHECKOUT_SESSION_ID}',
metadata: {
business_name: 'Pizza Palace',
order_id: 'ORD-123',
},
});Send the checkout URL to your customer via SMS, RCS, email, or any channel.
Customer lands on beautiful payment page, pays with Apple Pay, Google Pay, or card, and sees success page with your custom branding.
No complex setup. Just create a session and send the link.
Mobile-first design with Apple Pay, Google Pay, and card support.
Branded success pages with metadata-driven content.
1. Install Stripe SDK
2. Create a checkout session
3. Send the link