Bridge stablecoin-backed cards for commercial use integrate Stripe Issuing with Stripe Connect and Bridge’s stablecoin infrastructure. This lets you build a global commercial card program where each business customer gets their own Stripe connected account, and authorized users within that business can be issued cards that spend from a stablecoin wallet.Documentation Index
Fetch the complete documentation index at: https://apidocs.bridge.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Entity model
Each business customer is represented across two systems:| Object | System | Description |
|---|---|---|
| Customer | Bridge | Holds the business’s identity, KYC status, and cards endorsement. You create and manage this via the Bridge API. |
| Connected Account | Stripe | Created automatically by Bridge once the cards endorsement is approved. Represents the business within your Stripe Connect platform. |
Stripe-Account header. All cardholders and cards for a business are scoped to that Connected Account and appear under it in the Stripe Dashboard.
How it differs from consumer issuing
| Consumer | Commercial | |
|---|---|---|
| Customer type | Individual | Business |
| Stripe object created by Bridge | Cardholder | Connected Account |
| Who creates the Cardholder | Bridge | You, via Stripe API |
| Stripe setup | Stripe Issuing | Stripe Connect Platform |
| Real-time auth webhook | Not supported | Supported |
| Primary funding strategy | Noncustodial or Bridge Wallet | Bridge Wallet |
Technical integration APIs
| Step | API |
|---|---|
| Onboard business customers | Bridge API |
| Create cardholders | Stripe API |
| Create and manage cards | Stripe API |
| Card spend APIs and webhooks | Stripe API |
| Additional card features | Stripe API |
| KYC and cards endorsement management | Bridge Dashboard |
| Cards management | Stripe Dashboard |
Step 1: Set up Bridge developer and Stripe account
Work with Bridge to get a developer account set up on Bridge. Separately, set up a new Stripe account as a Connect Platform. Bridge will send you a URL (Stripe App Install Link) to associate your Bridge developer account to the Stripe platform account and activate Stripe Issuing. This flow connects Bridge to your Stripe platform.Step 2: Create customer
Each business you onboard is represented on Bridge as a business-typed Customer and on Stripe as a connected Account. Bridge manages creating the Stripe connected account within your platform—you only need to create the customer on the Bridge API or Dashboard and request thecards endorsement.
Once the cards endorsement is approved, Bridge creates the Stripe connected account automatically. The account ID is returned in the customer object:
stripe_account_id as the Stripe-Account header in all subsequent Stripe API calls for this business.
Step 3: Create cardholder
Unlike consumer issuing, you create the Cardholder yourself via the Stripe API. Include the business’sstripe_account_id in the Stripe-Account header. For production, you must surface the authorized user terms, record the IP and date the user accepted them, and submit that in the request:
Step 4: Create card
Use the cardholder ID from the previous step to create a card via the Stripe API. Include theStripe-Account header and specify the wallet using the crypto_wallet parameter. Bridge Wallet is the primary funding strategy for commercial cards:
crypto_wallet parameter reference. Noncustodial wallets (type=standard) are also supported for commercial cards.
Step 5: Test card spend
Once your card is activated, you can begin testing card spend immediately. View card details in the Stripe Dashboard or embed a Stripe Issuing Element to expose them to cardholders without bringing your backend into PCI scope.Real-time authorization
Commercial issuing supports theissuing_authorization.request webhook, which gives you control over individual authorization decisions. Configure the webhook endpoint in the Stripe Dashboard—your endpoint must respond within 2 seconds with an approval or denial.
Bridge may also independently reject an authorization even if your endpoint approves it—for example, due to insufficient wallet balance, onchain transaction screening, or velocity limits. Always rely on
issuing_authorization.created and issuing_authorization.updated events for the final authorization outcome.