Everything you need
Checkout, subscriptions, tax, invoicing, analytics, and marketplace tools — all connected.
Subscriptions
Trials, proration, metered billing, entitlements.
Global payments
Cards, wallets, bank transfers. 135+ currencies.
App marketplace
List apps, take revenue share, payouts to developers.
Tax & invoicing
EU/US/UK tax handling with compliant invoices.
Reporting
Real-time MRR, churn, cohorts & exports.
Create a checkout link
POST /v1/checkout/links
{ "product_id":"pro-plan", "currency":"USD", "amount":2900, "success_url":"https://yourapp.com/success" }
Verify a webhook (Node)
import crypto from "crypto";
export function verify(signature, payload, secret){
const h = crypto.createHmac("sha256", secret).update(payload).digest("hex");
return crypto.timingSafeEqual(Buffer.from(signature), Buffer.from(h));
}