paddle-checkout-web
Add a Paddle Checkout to a Next.js web app — overlay or inline, with event handling, customer pre-fill, and dynamic line item updates.
How do I install this agent skill?
npx skills add https://developer.paddle.com --skill paddle-checkout-webIs this agent skill safe to install?
No partner audit is available yet. Read the source before installing.
What does this agent skill do?
Build a Paddle Checkout in Next.js
When to use this skill
Use this skill when adding a hosted Paddle checkout to a Next.js (App Router) app, either as an overlay (modal-style) or inline (embedded within your page). It covers initialization, opening checkout with line items, listening to events, customer pre-fill, the post-checkout redirect, and the throttled updateItems pattern for cart-like UIs.
This skill is client-side only. Pair it with:
webhooksto receivetransaction.completed/subscription.createdevents on your server.subscription-syncto mirror Paddle subscription state into your database.sandbox-testingto test the integration end-to-end in the Paddle sandbox.
Prerequisites
You need:
- A Paddle account, with the sandbox environment active during development.
- Sign up for sandbox: https://sandbox-vendors.paddle.com/
- Sign up for live: https://vendors.paddle.com/
- At least one product and price set up. Use
catalog-setupif you haven't yet — note the price ID (looks likepri_01h...) for use below. - Your domain approved for checkout under Paddle > Checkout > Website approval. Domains are approved automatically in sandbox.
- Your default payment link set under Paddle > Checkout > Checkout settings > Default payment link. You can use
https://localhost/for sandbox, then change later. - Two environment variables from Paddle > Developer tools > Authentication:
NEXT_PUBLIC_PADDLE_CLIENT_TOKEN=test_... # client-side token, safe to expose
NEXT_PUBLIC_PADDLE_ENV=sandbox # or "production"
If a Paddle MCP server is available to you, call client.clientTokens.create({ name: "Frontend dev token" }) inside an execute to provision the token programmatically rather than asking the user to copy it from the dashboard. Note clientTokens is camelCase.
The Paddle MCP exposes three tools per server (
search,execute,report_missing_tool). Workflow: callsearchto confirm the exact method name and parameter shapes, then callexecutewith an async function that callsclient.<resource>.<operation>(...). Method paths are camelCase (client.clientTokens.create,client.pricingPreview.preview). Body params and response fields are snake_case (tax_category,product_id,unit_price,currency_code). Pagination is{ pagination: { hasMore }, data: [...] }with{ after: "<last_id>" }— not.next()/.hasMore. Chain multi-step workflows inside oneexecute; variables don't persist between calls. Hard caps: 50 API calls per execute, 30s timeout, 32KB code.
Install the client library:
npm install @paddle/paddle-js
The Node SDK (@paddle/paddle-node-sdk) is for server-side work — you do not need it for checkout.
Choose your checkout style
| Style | When to use | What the user sees |
|---|---|---|
| Overlay | Fastest to integrate. Opens over the current page. | Modal-style window that covers your page |
| Inline | When you want full control over the surrounding layout and branding. | Checkout fields render inside a <div> you control |
Both use the same Paddle.Checkout.open() call — the only difference is the displayMode setting and where it renders. Default to overlay unless you need branded inline. Overlay works without any layout changes; inline requires a target element.
Choose your checkout variant
| Variant | Description |
|---|---|
| One-page | A single-page checkout experience with all fields (customer and payment details) on the same screen. |
| Multi-page | A two-page checkout: customer details are collected on the first page, payment details on the second page. |
Multi-page is the default. One-page is recommended for most use cases.
Overlay checkout — the minimum viable integration
This is the fastest path: a button that opens checkout for one price. Recommended.
// app/buy/page.tsx
"use client";
import { initializePaddle, type Paddle } from "@paddle/paddle-js";
import { useEffect, useState } from "react";
export default function BuyPage() {
const [paddle, setPaddle] = useState<Paddle | null>(null);
useEffect(() => {
if (
!process.env.NEXT_PUBLIC_PADDLE_CLIENT_TOKEN ||
!process.env.NEXT_PUBLIC_PADDLE_ENV
) {
return;
}
initializePaddle({
token: process.env.NEXT_PUBLIC_PADDLE_CLIENT_TOKEN,
environment: process.env.NEXT_PUBLIC_PADDLE_ENV as
| "sandbox"
| "production",
}).then((p) => p && setPaddle(p));
}, []);
function openCheckout() {
paddle?.Checkout.open({
items: [{ priceId: "pri_01h...", quantity: 1 }],
settings: {
variant: "one-page", // or "multi-page"
},
});
}
return (
<button onClick={openCheckout} disabled={!paddle}>
Buy now
</button>
);
}
That's it for overlay — no displayMode setting needed (overlay is the default). The user is shown the modal, completes payment, and Paddle handles the success page.
Inline checkout with full event handling
Inline checkout is what you want when you need to render checkout next to other UI (e.g. a price summary, branded layout, custom success state). The full pattern:
// app/checkout/[priceId]/checkout-contents.tsx
"use client";
import {
type Environments,
initializePaddle,
type Paddle,
} from "@paddle/paddle-js";
import type { CheckoutEventsData } from "@paddle/paddle-js/types/checkout/events";
import throttle from "lodash.throttle";
import { useParams } from "next/navigation";
import { useCallback, useEffect, useState } from "react";
interface Props {
userEmail?: string;
}
export function CheckoutContents({ userEmail }: Props) {
const { priceId } = useParams<{ priceId: string }>();
const [quantity, setQuantity] = useState(1);
const [paddle, setPaddle] = useState<Paddle | null>(null);
const [checkoutData, setCheckoutData] = useState<CheckoutEventsData | null>(
null,
);
// Throttle updateItems to avoid hammering Paddle on rapid quantity changes.
const updateItems = useCallback(
throttle((paddle: Paddle, priceId: string, quantity: number) => {
paddle.Checkout.updateItems([{ priceId, quantity }]);
}, 1000),
[],
);
useEffect(() => {
if (paddle?.Initialized) return;
if (!process.env.NEXT_PUBLIC_PADDLE_CLIENT_TOKEN) return;
initializePaddle({
token: process.env.NEXT_PUBLIC_PADDLE_CLIENT_TOKEN,
environment: process.env.NEXT_PUBLIC_PADDLE_ENV as Environments,
eventCallback: (event) => {
if (event.data && event.name) {
setCheckoutData(event.data);
}
},
checkout: {
settings: {
variant: "one-page",
displayMode: "inline",
theme: "dark",
allowLogout: !userEmail,
frameTarget: "paddle-checkout-frame",
frameInitialHeight: 450,
frameStyle:
"width: 100%; background-color: transparent; border: none",
successUrl: "/checkout/success",
},
},
}).then((p) => {
if (p && priceId) {
setPaddle(p);
p.Checkout.open({
...(userEmail && { customer: { email: userEmail } }),
items: [{ priceId, quantity }],
});
}
});
}, [paddle?.Initialized, priceId, userEmail]);
useEffect(() => {
if (paddle?.Initialized && priceId) {
updateItems(paddle, priceId, quantity);
}
}, [paddle, priceId, quantity, updateItems]);
return (
<div>
<PriceSection
checkoutData={checkoutData}
quantity={quantity}
onQuantityChange={setQuantity}
/>
{/* The class name here MUST match `frameTarget` above. */}
<div className="paddle-checkout-frame" />
</div>
);
}
Three things to notice:
frameTargetis a CSS class name (no leading dot). Whatever you set here, you must also render an element with that exact class. Paddle injects the iframe into it.eventCallbackfires for every event — use theevent.nameto discriminate (checkout.loaded,checkout.items.updated,checkout.completed,checkout.error,checkout.payment-error, etc.). The starter kit just keeps the latest event data so a sibling component can show price totals.successUrlis where Paddle redirects after a successful payment. Make this a route that handles post-purchase logic (e.g. shows an order confirmation) — but do not rely on it for provisioning; the webhook is the source of truth.
Customer pre-fill
If your user is already authenticated, pass their email so they don't need to type it:
paddle.Checkout.open({
customer: { email: "jane@example.com" },
items: [{ priceId: "pri_01h...", quantity: 1 }],
});
To go further, pass an existing Paddle customer ID (created via the API or returned by a previous checkout):
paddle.Checkout.open({
customer: { id: "ctm_01h..." },
items: [{ priceId: "pri_01h...", quantity: 1 }],
});
Setting allowLogout: false in the checkout settings prevents the user from signing out of their pre-filled session — useful when you've already authenticated them.
Dynamic line items
To change quantity, swap a price, or add another item without closing the checkout, call Paddle.Checkout.updateItems():
paddle.Checkout.updateItems([
{ priceId: "pri_01h...", quantity: 3 },
{ priceId: "pri_02h...", quantity: 1 },
]);
Always throttle these calls (1 second is a good default — see the lodash.throttle example above). Paddle re-renders the checkout on each call, and unthrottled updates produce a flicker and rate-limit risk.
Reading checkout state
Hook into the eventCallback to drive your own UI (running totals, line item breakdowns, applied discounts). The most useful events:
| Event | Fires when | Common use |
|---|---|---|
checkout.loaded | Checkout finishes initial render | Hide a loading spinner |
checkout.items.updated | Line items change (incl. via updateItems) | Update a sibling price summary |
checkout.customer.created | New customer is created during checkout | Capture the new customer.id |
checkout.payment.selected | User picks a payment method | Conditionally show region-specific copy |
checkout.completed | Payment succeeds | Trigger a confetti animation, redirect |
checkout.error | Something went wrong opening checkout | Surface a fallback (mailto, support link) |
checkout.payment-error | A payment attempt failed | Show retry guidance — never the raw error |
Full list at developer.paddle.com/paddle-js/events.
Post-checkout: redirect vs webhook
When checkout completes, two things happen in parallel:
- The user's browser is sent to your
successUrl(or your custom event handler). - Paddle fires a
transaction.completed(and possiblysubscription.created) webhook to your server.
Provisioning belongs in the webhook, not the redirect. The redirect is for UX (showing "Thanks for your order"); the webhook is the durable, retried, signed event you can trust. See webhooks for setup.
Common pitfalls
- Something went wrong message — typically means the domain wasn't added to the approved domains list in the Paddle dashboard, or the user didn't add a default payment link in the Paddle dashboard.
Paddle is not defined— you forgot to awaitinitializePaddle()before callingPaddle.Checkout.open(). The promise resolves with thePaddleobject; only then can you open checkout.- Checkout doesn't render inline — your
frameTargetclass name doesn't match a rendered element, or the element isn't in the DOM yet whenCheckout.open()runs. Render the target first; open in auseEffect. - Sandbox vs production drift —
NEXT_PUBLIC_PADDLE_ENVcontrols which environment Paddle.js talks to. If your client token is for sandbox but you setNEXT_PUBLIC_PADDLE_ENV=production, checkout will fail to load. Tokens and prices are environment-scoped — sandboxpri_...IDs don't exist in production. - Pasting price IDs into client code — fine for a quick prototype, but for a real app load price IDs from the server (after fetching the catalog) so you can swap them without a redeploy.
- Using the redirect for provisioning — users close tabs, lose connections, or block redirects. Webhooks are the source of truth.
- Throttling
updateItems— without throttling, rapid quantity changes flicker and may rate-limit. 1 second is a sensible default. - Calling
initializePaddletwice — the SDK warns and refuses on the second call. Guard withpaddle?.Initialized(as in the example) or use a singleton pattern.
Verify the integration
- Run
npm run devand navigate to your checkout page. - Confirm the checkout loads or the iframe renders and the price matches what you expect.
- Use a Paddle sandbox test card — e.g.
4242 4242 4242 4242with any future expiry and any 3-digit CVC. - Complete the purchase and confirm:
- The browser lands on your
successUrl. - The
checkout.completedevent fired (console.logfromeventCallback). - In the Paddle dashboard (sandbox), the transaction shows under Transactions.
- The browser lands on your
- To test the webhook side, see
sandbox-testingfor the simulator.
Related docs
- Paddle.js overview
- Build an overlay checkout
- Build a branded inline checkout
- Checkout events reference
Paddle.Checkout.openreference- Default payment link & domain approval
- Reference implementation: paddle-nextjs-starter-kit — see
src/components/checkout/checkout-contents.tsx.
How can the creator link this skill?
Add the canonical catalog link to the repository README so users can inspect current installs and available audits. The publishing guide covers the complete discovery path.
<a href="https://skillzs.dev/skills/developer.paddle.com/paddle-checkout-web">View paddle-checkout-web on skillZs</a>