Bridge your checkout system to Stripe, PayPal, and Square simultaneously. Route transactions dynamically, sync structural subscription plans, and manage fallback rails automatically.
curl -X POST https://api.corebridge.io/v1/payments/charge \
-H "Authorization: Bearer sk_live_core..." \
-H "Content-Type: application/json" \
-d '{
"provider": "stripe",
"amount": 149.00,
"currency": "USD",
"source": "tok_visa",
"meta": {"company_num": "ACME-9201"}
}'
curl -X POST https://api.corebridge.io/v1/subscriptions/create \
-H "Authorization: Bearer sk_live_core..." \
-d '{
"customer_email": "billing@acme.com",
"plan_identifier": "prod_internal_abc123",
"smart_routing": {
"primary": "paypal",
"failover": "stripe"
}
}'
Abstract payment complexity into simple webhook routing tables.
If Stripe logs a network error or regional downtime, transactions instantly reroute down secondary pathways via PayPal automatically.
Map a single local billing plan variant identifier out to remote Stripe prices and PayPal plans cleanly with zero manual configuration drift.
Perfect for multi-tenant SaaS structures. Group and segment gateway credentials, team access keys, and logs by enterprise business layers.