Skip to content
Dashboard

From idea to secure checkout in minutes with Stripe

vercel integration add stripe # provisions Stripe account
vercel integration guide stripe # guides agents through the setup process

Vercel CLI and Marketplace enables a single-click install. This command will instantly create a new Stripe account so you can start coding in seconds.

Link to headingAn improved developer experience

Link to headingReducing setup friction while improving security

Link to headingGet started

import Stripe from "stripe"
const stripe = new Stripe(process.env.STRIPE_SECRET_KEY)
const session = await stripe.checkout.sessions.create({
ui_mode: 'embedded',
redirect_on_completion: 'never',
line_items: [
{
price_data: {
currency: "usd",
product_data: { name: "T-Shirt" },
unit_amount: 40_00,
},
quantity: 1,
},
],
mode: 'payment',
})

Ready to deploy?