Powerful Integrations
Connect BizBrew with your favourite tools and services. From payment processing to messaging and security, everything works together out of the box.
Stripe
Secure payment processing with PCI DSS Level 1 compliance. Accept credit cards, bank transfers, and digital wallets. Manage subscriptions, invoices, and payouts.
Resend
Reliable delivery for auth emails, confirmations, and notifications. Built for developers with excellent deliverability and real-time analytics.
Nodemailer (SMTP)
Connect your own SMTP server for booking confirmations and reminders. Full control over email delivery with support for custom SMTP providers.
Bird API
Send booking confirmations, reminders, and magic links via WhatsApp and SMS. Phone verification, two-factor authentication, and marketing messages.
Cloudflare Turnstile
Bot protection without annoying CAPTCHAs. Invisible verification for forms, login pages, and public booking pages. Privacy-friendly alternative to reCAPTCHA.
Redis
Optional cross-replica rate limiting and caching for high-traffic tenants. Falls back gracefully to in-memory when Redis is unavailable.
Supabase
PostgreSQL database with Row-Level Security, GoTrue auth, real-time subscriptions, and file storage. The backbone of every BizBrew tenant.
API Access
BizBrew provides 100+ RESTful API endpoints for custom integrations and automations. Build workflows that connect your existing tools with your BizBrew tenant, automate repetitive tasks, and extend the platform to fit your exact needs.
- Full CRUD operations for clients, bookings, invoices, products, and more
- JWT-based authentication with role-based access control
- Rate limiting with configurable thresholds per endpoint
- Tenant-scoped — every request is isolated to your business data
// Fetch your bookings via the API
const response = await fetch(
'https://your-tenant.bizbrew.org/api/platform/bookings',
{
headers: {
'Authorization': 'Bearer <your-jwt>',
'Content-Type': 'application/json',
},
}
);
const { data } = await response.json();
// → [{ id, client_id, service_id, date, status }]Example Webhook Events
Webhooks
Receive real-time notifications for every important event in your tenant. Payments, bookings, client changes, subscription updates, and more — delivered to your endpoint the moment they happen.
- Signed payloads with HMAC verification for security
- Automatic retries with exponential backoff
- Event filtering — subscribe only to what you need
Start integrating today
Create your free account and connect BizBrew with the tools your business already uses. No credit card required.