SellCheckout Pages
Checkout that gets out of the way.
One page, familiar payment options, and tax handled for you. Buyers finish fast; you get paid and deliver automatically.

One page flow
Review, pay, done: fewer steps means fewer abandoned carts.
Global ready
Localized payment options and MoR tax remittance in 130+ countries.
Instant delivery
Payment clears → buyer gets files and access automatically.
import { Pocketsflow } from "pocketsflow";
const pf = new Pocketsflow({
apiKey: process.env.POCKETSFLOW_API_KEY,
});
// A one time product. Use subscriptionOffers.create() for plans.
const product = await pf.products.create({
name: "Pro license",
price: 49,
});
// A hosted checkout for that product.
const session = await pf.checkout.create({
productId: product._id,
successUrl: "https://example.com/welcome",
customerEmail: "buyer@example.com",
});
// Send the buyer to session.url. Payment, tax, and delivery
// are handled; order.completed fires to your webhook.
redirect(session.url);Checkout is an API call.
Create a checkout, attach a product, and let Pocketsflow handle the transaction lifecycle: payment, tax, delivery, and the receipt.
Every resource is an HTTPS endpoint under one base URL with Bearer API keys. Live and test keys are scoped to their own data; the OpenAPI spec is served at /docs.json.
How it works.
Publish a product
Set price and files; Pocketsflow generates the checkout link.
Share it anywhere
Bio, email, creator page, or custom domain: same checkout.
Buyer pays once
Cards, PayPal, or express wallets on a single page.
You stay hands off
Tax, invoice, and delivery run under Pocketsflow as Merchant of Record.
Common questions.
Do I need to build my own checkout?
No. Every product includes a ready checkout page: share the link and sell.
Which payment methods work at checkout?
Cards, PayPal, and express wallets like Apple Pay and Google Pay where available.
Who handles sales tax?
Pocketsflow, as Merchant of Record: we calculate, collect, and remit tax automatically.
What is the platform fee?
An itemized transaction cost (~$5.00 on $100) on sales. Payment processor fees are separate from the Pocketsflow fee.
Keep exploring.
Start accepting payments today.
Start accepting payments without building the infrastructure around them.