Join the future of work
Build the next...
Embed components
Spend your time building your business, not complex components. Our APIs unlock it all.
checkout.tsx
$ npm install @whop/checkout





























Spend your time building your business, not complex components. Our APIs unlock it all.
import { WhopCheckoutEmbed } from "@whop/checkout/react";
export default function Checkout() {
return (
<WhopCheckoutEmbed
planId="plan_XXXXXXXXX"
theme="light"
skipRedirect
onComplete={(planId, receiptId) => {
console.log("Payment complete!", { planId, receiptId });
}}
/>
);
}