Multi-Provider Support
Accept payments through Stripe, PayPal (with Venmo & Cards), and Authorize.net with a unified API
Accept payments with Stripe, PayPal, and Authorize.net - Built on Pubflow
// Create payment intent
const response = await fetch('https://your-instance.pubflow.com/bridge-payment/payments/intents', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-Session-ID': sessionId // From Flowless authentication
},
body: JSON.stringify({
subtotal_cents: 1800,
tax_cents: 200,
total_cents: 2000,
currency: 'USD',
concept: 'Premium Subscription',
provider_id: 'stripe'
})
});
const { client_secret } = await response.json();// Using Stripe Elements
const { error } = await stripe.confirmPayment({
elements,
confirmParams: {
return_url: `${window.location.origin}/success`
}
});Create your Bridge Payments instance from Pubflow Platform dashboard. Configure providers, set environment variables, and start accepting payments - all from one place.
Seamlessly integrates with Flowless authentication. Your users' sessions are automatically validated, and payment data is linked to their accounts.
Clean REST API, comprehensive documentation, TypeScript support, and official client libraries. Everything you need to integrate payments quickly.
Battle-tested with automatic retries, error handling, rate limiting, and comprehensive logging. Built for scale from day one.
Bridge Payments powers payment processing for applications built on Pubflow, handling everything from simple donations to complex subscription management.
Open Source Payment Standard
Bridge Payments is based on Native Payments, an open-source payment standard and global structure created by Pubflow for building payment systems.
Native Payments provides a standardized approach to payment processing, database schemas, API design, and provider integrations - making it easier to build, maintain, and scale payment infrastructure.
Learn more: github.com/pubflow/native-payments