The flow
- Short-lived member JWT for browser quote requests
- Signed merchant server calls for redeem and rollback
- Rule priority, exclusivity, and opt-in stacking
- Automatic usage restoration on refunds
Couponify is a Stripe-like promotion engine for paid memberships. Identify the shopper, quote the best benefit, redeem on payment, and roll back on refunds — all from one API.
The storefront only renders prices. Couponify decides eligibility, stacking, and final pricing, then records usage when payment succeeds.
<script src="https://cdn.couponify.ai/sdk.js"></script>
<script>
Couponify.init({
apiBaseUrl: "https://api.couponify.ai/api",
storeId: "your-store-id"
});
Couponify.setSessionToken(memberToken);
Couponify.apply();
</script>Merchants should not build promotion engines in custom JavaScript. Couponify pushes that complexity into auditable APIs.
All discount logic lives in Couponify APIs. Storefronts never drift from checkout math.
Turn paid memberships into instant discounts, exclusive prices, and capped usage benefits.
Ship with one browser SDK, a hosted member login flow, and signed server callbacks.