Your first billing flow
Build a working subscription with feature gating in 10 minutes
Your first billing flow
In this tutorial you will wire up a complete subscription flow from scratch. By the end you will have:
- A plan with a metered feature and a boolean feature
- A customer subscribed to that plan via a real checkout
- Working access control that blocks requests when the quota runs out
You will build everything in a single Node.js script so you can see results immediately.
Before you start
You need:
- A free Billwave account — sign up at app.billwave.example
- Node.js 18+
You do not need a payment provider account. The sandbox runs on payment providers that Billwave manages for you (see Environments). You connect your own provider only when you go live.
1. Create your organization and grab your sandbox key
- Log in to the dashboard at app.billwave.example. If this is your first organization, name it anything you like (e.g. "My Tutorial App") and click Create organization. Otherwise use Create Organization from the organization switcher.
- The dashboard shows your sandbox API key once — copy it. Sandbox keys start with
billwave_sk_test_and only ever talk tosandbox.billwave.example, so nothing in this tutorial can touch production (see Environments). You can always mint another one under Settings → API Keys. - Save it in a
.envfile:
BILLWAVE_API_KEY=billwave_sk_test_xxxxxxxxxxxxxxxx2. That's it for setup
There is no provider to connect and no webhook to register. In the sandbox, checkouts run on test accounts that Billwave owns, and their webhooks are already wired to Billwave. When you go live you will add your own provider keys and webhook URL — see Webhook setup.
3. Create your catalog
Instead of clicking around a dashboard, Billwave lets you define your features and plans in code.
Create billwave.config.mjs:
import { Billwave, metered, boolean, plan } from "@digvijay-x1/billwave";
// 1. Define features
export const apiCalls = metered("api-calls", { name: "API Calls" });
export const analytics = boolean("analytics", { name: "Analytics Dashboard" });
// 2. Define the client and catalog
export const billwave = new Billwave({
secretKey: process.env.BILLWAVE_API_KEY,
catalog: [
plan("starter", {
name: "Starter",
price: 500, // minor units
currency: "NGN",
interval: "monthly",
planGroup: "main",
features: [apiCalls.limit(100, { reset: "monthly" }), analytics.on()],
}),
],
});Now, push this configuration to your Billwave account:
BILLWAVE_SECRET_KEY=billwave_sk_test_… npx @digvijay-x1/billwave-cli sync --config ./billwave.config.mjsThe CLI reads the environment from the key prefix (billwave_sk_test_ → sandbox) and shows it in the first line of output. You should then see the diff and a confirmation that your features and plans were created. In CI, add --yes --json for non-interactive, machine-readable output.
4. Write your first script
mkdir billwave-tutorial && cd billwave-tutorial
npm init -y
npm install @digvijay-x1/billwave dotenvCreate index.mjs:
import "dotenv/config";
import { billwave } from "./billwave.config.mjs";
// --- Step A: Subscribe a customer ---
const attach = await billwave.attach({
customer: "tutorial_user",
product: "starter",
});
console.log("Attach result:", attach);
if (attach.checkoutUrl) {
console.log("\n→ Open this URL to complete payment:\n", attach.checkoutUrl);
console.log("\nAfter paying, re-run this script.");
process.exit(0);
}Run it:
node index.mjsYou should see a checkout URL. Open it in your browser, complete the test payment, and come back.
5. Check feature access
After payment, add this below the attach block:
// --- Step B: Check boolean feature ---
const analyticsAccess = await billwave.check({
customer: "tutorial_user",
feature: "analytics",
});
console.log("Analytics allowed?", analyticsAccess.allowed);
// → true
// --- Step C: Check metered feature ---
const apiAccess = await billwave.check({
customer: "tutorial_user",
feature: "api-calls",
});
console.log("API calls remaining:", apiAccess.balance, "/", apiAccess.limit);
// → 100 / 100Run it again. You should see allowed: true and balance: 100.
6. Track usage and hit the limit
Add this to consume some quota:
// --- Step D: Track usage ---
for (let i = 0; i < 5; i++) {
await billwave.track({
customer: "tutorial_user",
feature: "api-calls",
value: 1,
});
}
const afterTracking = await billwave.check({
customer: "tutorial_user",
feature: "api-calls",
});
console.log("After 5 calls — remaining:", afterTracking.balance);
// → 95Run it. Notice the remaining count drops by 5 each time you run the script.
7. See what happens at the limit
Replace the loop with a bulk track to exhaust the quota:
// --- Step E: Exhaust quota ---
const exhaust = await billwave.track({
customer: "tutorial_user",
feature: "api-calls",
value: 200, // more than the 100 limit
});
console.log("Track result:", exhaust.code);
// → "limit_exceeded"
console.log("Allowed?", exhaust.allowed);
// → falseRun it. The SDK returns allowed: false and code: "limit_exceeded". This is the signal you would use in a real app to block the request or show an upgrade prompt.
What you built
You now have a working billing flow:
- Define your plans and features in code, syncing them with
npx @digvijay-x1/billwave-cli sync. - attach() creates a checkout or returns an existing subscription.
- check() tells you whether a customer can use a feature right now.
- track() records usage and enforces limits.
Everything else — webhook processing, entitlement provisioning, period resets — happens automatically.