Integrations

StackBE connects with the tools you already use. API-first design means it works with any framework or platform.

Core Integrations

Stripe

Payments

Payment processing for subscriptions, one-time charges, and invoicing. StackBE uses Stripe Connect so you keep your own Stripe account.

Core integration — all payments flow through Stripe

Resend

Email

Transactional email delivery for magic link authentication, subscription notifications, dunning emails, and lifecycle updates.

Used for all customer-facing emails

Dispatch Tickets

Support

Customer support ticket management integrated directly into StackBE. Customers can create and track support tickets through your app.

Optional integration for customer support

Framework Compatibility

StackBE works with any framework through its REST API. The TypeScript SDK (@stackbe/sdk) provides the best experience for JavaScript/TypeScript projects.

TypeScript SDK

@stackbe/sdknpm
npm install @stackbe/sdk
import { StackBE } from '@stackbe/sdk';

const stackbe = new StackBE({
  apiKey: process.env.STACKBE_API_KEY,
  appId: process.env.STACKBE_APP_ID,
});

// Auth
await stackbe.auth.sendMagicLink('user@example.com');

// Checkout
const { url } = await stackbe.checkout.createSession({
  customer: 'cust_123',
  planId: 'plan_pro',
  successUrl: 'https://yourapp.com/success',
});

// Entitlements
const { hasAccess } = await stackbe.entitlements.check(
  'cust_123',
  'premium_feature'
);

REST API

40+ REST API endpoints covering authentication, subscriptions, entitlements, customers, organizations, analytics, and more. Full OpenAPI specification available.

Auth
Checkout
Subscriptions
Entitlements
Customers
Organizations
Usage
Analytics

Webhooks

StackBE sends webhook events for subscription lifecycle changes. Stay in sync with your application without polling.

subscription.created
subscription.updated
subscription.canceled
subscription.paused
subscription.resumed
invoice.payment_succeeded
invoice.payment_failed
checkout.completed
Webhook Documentation

Ready to integrate?

Get your API key and start building in minutes.

Get Started Free