Weiter zum Inhalt
Konto erstellen oder anmelden
Das Logo der Stripe-Dokumentation
/
KI fragen
Konto erstellenAnmelden
Jetzt starten
Zahlungen
Umsatz
Plattformen und Marktplätze
Geldmanagement
Entwicklerressourcen
APIs und SDKsHilfe
Übersicht
Für Ihr Unternehmen nutzen
Finanzkonten
KartenSofortige Währungsumrechnung
Globale Auszahlungen
Capital
In Ihre Plattform einbetten
Integration starten
Financial Accounts für Plattformen
Karten ausstellen
    Übersicht
    Funktionsweise von Issuing
    Globale Verfügbarkeit
    Betrug handhaben
    Karten
    Ihren Kartentyp auswählen
    Virtuelle Karten
    Physische Karten
    Karten verwalten
    Digitale Geldbörsen
    Ersatzkarten
    Kartenprogramme
    Programmmanagement
    Nur-Abwickler-Modell von Issuing
    Ihr Kartenprogramm anpassen
    Ihrem Kartenprogramm Gelder hinzufügen
    Credit Consumer Issuing
    Stablecoin-backed issuing with Connect
    Kontrollen
    Ausgabenkontrollen
    Fortschrittliche Betrugs-Tools
    3DS
    Fraud Challenges
    Autorisierung in Echtzeit
    PIN-Verwaltung
    Elements in Issuing
    Token-Verwaltung
    Finanzierung
    Ausstehender Betrag
    Nachträgliche Finanzierung Ihrer Integration mit Stripe
    Nachfinanzierung Ihrer Integration mit Dynamic Reserves
    Käufe
    Autorisierungen
    Transaktionen
    Anfechtungen
    Tests
    Händlerkategorien
    ATM-Nutzung
    Erweiterte Händlerdaten
    Issuing mit Connect
    Issuing- und Connect-Integration einrichten
    Annahme der Allgemeinen Geschäftsbedingungen aktualisieren
    Finanzierung in Connect
    Verbundene Konten, Karteninhaber/innen und Karten
    Offboarding von inaktiven verbundenen Konten
    Schnittstelle für Kartenverwaltung einbetten
    Kreditkonto
    Übersicht
    Verbundene Konten einrichten
    Kreditbedingungen verwalten
    Andere Kreditentscheidungen melden und AANs handhaben
    Erforderliche regulatorische Daten für Kreditentscheidungen melden
    Kontoverpflichtungen verwalten
    Kreditintegration testen
    Weitere Informationen
    Karteninhabertyp auswählen
    Kunden-Support für Issuing und Treasury
    Überwachungsliste in Issuing
    Marketing-Beratung (Europa/Vereinigtes Königreich)
    Beratung bezüglich Produkt- und Marketingkonformität (USA)
Capital für Plattformen
Vereinigte Staaten
Deutsch
StartseiteGeldmanagementIssuing cards

Hinweis

Bis jetzt ist diese Seite noch nicht in dieser Sprache verfügbar. Wir arbeiten aber verstärkt daran, unsere Dokumentation in weiteren Sprachen bereitzustellen, und werden die Übersetzung sofort anzeigen, sobald diese verfügbar ist.

Set up an Issuing and Connect integration funded with stablecoinsPrivate Vorschau

Private Vorschau

Stablecoin-backed wallets are currently in private preview.

You can enable spending backed by stablecoins on your Connect Platform to:

  • Create custodial wallets for connected accounts.
  • Issue virtual or physical prepaid debit cards, backed by stablecoin balances.
  • Enable direct transfers to external crypto wallets.

Availability

  • Your Connect platform must be a Vereinigte Staaten-based business.
  • Connected accounts must be based in one of the following countries: Argentinien und Mexiko

Funding lifecycle

This guide covers the following funding lifecycle:

  1. You first fund your platform account by transferring money from your US bank account to your Stripe Financial Account using the Financial Addresses v2 API.
  2. Then you transfer funds from your platform’s financial account to a connected account’s financial account and convert the funds from USD to USDC using the Outbound Payments v2 API.
  3. The final step is to enable connected account spending using any of these methods:
    • Prepaid debit cards in USD-using Issuing Cardholders API and Issuing Cards API
    • Crypto wallet transfers in USDC—using Outbound Setup Intents v2 API and Outbound Transfers v2 API
    • Payouts to local bank accounts in USD, MXN, or EUR-using Outbound Setup Intents v2 API and Outbound Transfers v2 API

Bevor Sie loslegen

  • An active Stripe account configured as a platform
  • A US-based legal entity for the platform account.

Fund your platform financial account

Your platform’s financial account is used to disperse funds to connected accounts to fund their account’s card spend.

Retrieve your financial account id

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl https://api.stripe.com/v2/money_management/financial_accounts \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}"

Create a financial address using the Financial Address v2 API

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl -X POST https://api.stripe.com/v2/money_management/financial_addresses \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ --json '{ "financial_account": "fa_connected_123", "type": "us_bank_account" }'

Retrieve funding credentials

Retrieve the account and routing numbers for wire or ACH transfers. Use the include parameter to receive the full account number.

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl -G https://api.stripe.com/v2/money_management/financial_addresses \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ -d "include[0]"="credentials.us_bank_account.account_number"

You can monitor incoming funds using the Transactions v2 API and check your financial account balance using the Financial Accounts v2 API.

Onboard connected accounts

Regionale Aspekte
Argentinien
Mexiko

Only connected accounts in Argentina and Mexico are currently supported.

Create a connected account

Create a v2 Account with storer and card creator capabilities. Learn more about Account capabilities.

ConfigurationDescription
storer.holds_currencies.usdcEnables stablecoin storage features
storer.outbound_transfer.crypto_walletAllows transfers to external wallets
card_creator.commercial.lead.prepaid_cardEnables prepaid card issuing
Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl -X POST https://api.stripe.com/v2/core/accounts \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ --json '{ "contact_email": "jenny.rosen@example.com", "display_name": "Connected Account for Jenny", "identity": { "country": "mx", "entity_type": "individual" }, "configuration": { "merchant": { "capabilities": { "card_payments": { "requested": true } } }, "storer": { "capabilities": { "holds_currencies": { "usdc": { "requested": true } }, "outbound_transfers": { "crypto_wallets": { "requested": true } } } }, "card_creator": { "capabilities": { "commercial": { "lead": { "prepaid_card": { "requested": true } } } } } }, "dashboard": "none", "defaults": { "currency": "usdc", "responsibilities": { "fees_collector": "application", "losses_collector": "application" } } }'

Complete KYC/KYB

Review and fulfill the requirements for the connected account. For more information, read more about account creation

After fulfilling the requirements, Stripe and Bridge might take some time to verify the information and activate the configuration. Monitor the account’s progress using webhooks or by retrieving the configuration status with the Retrieve an Account v2 API.

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl -G https://api.stripe.com/v2/core/accounts/acct_connected_123 \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ -d "include[0]"="configuration.storer" \ -d "include[1]"="configuration.card_creator"

The response includes a configuration field with the status for each of the configurations. As soon as they’re active, the account is ready to proceed.

Create a financial account

After capabilities are active, create a financial account for the connected account to hold USDC. This financial account can transfer funds to an external wallet or fund the card spend of an Issuing card.

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl -X POST https://api.stripe.com/v2/money_management/financial_accounts \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ --json '{ "type": "storage", "storage": { "holds_currencies": [ "usdc" ] } }'

Fund connected account wallets

Send funds from your platform financial account to connected account financial accounts, converting USD to USDC in the process.

Create an outbound payment

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl -X POST https://api.stripe.com/v2/money_management/outbound_payments \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ --json '{ "from": { "financial_account": "fa_platform_123", "currency": "usd" }, "to": { "recipient": "acct_connected_123", "payout_method": "fa_connected_123", "currency": "usdc" }, "amount": { "value": 10000, "currency": "usd" }, "description": "Payout to connected account" }'

Verify the balance

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl https://api.stripe.com/v2/money_management/financial_accounts/fa_connected_123 \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}"

Enable crypto wallet transfers

Allow connected accounts to transfer USDC to external crypto wallets they own.

Create a crypto wallet payout method

For first-time transfers, create a payout method for the external wallet.

Hinweis

Supported networks are Arbitrum, Avalanche C-Chain, Base, Ethereum, Optimism, Polygon, Solana, Stellar.

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl -X POST https://api.stripe.com/v2/money_management/outbound_setup_intents \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ --json '{ "payout_method_data": { "type": "crypto_wallet", "crypto_wallet": { "address": "0x1234567890abcdef1234567890abcdef12345678", "network": "polygon" } } }'

Create an outbound transfer

Transfer USDC from the financial account to the crypto wallet.

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl -X POST https://api.stripe.com/v2/money_management/outbound_transfers \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ --json '{ "from": { "financial_account": "fa_connected_123", "currency": "usdc" }, "to": { "payout_method": "cwa_123", "currency": "usdc" }, "amount": { "value": 1000, "currency": "usdc" } }'

Issue cards

Issue virtual and physical prepaid debit cards funded with a USD backed stablecoin balance. This section uses v1 Stripe Issuing APIs, which are fully interoperable with the v2 APIs used elsewhere in this guide.

Card configuration

ConfigurationValue
Card ProductBusiness Prepaid Debit
BIN TypeShared BIN
Sponsor BankLead Bank
NetworkVISA
Card CurrencyUSD
Funding ModelPre-funded, Stablecoin-backed
Wallet TypeCustodial
Funding CurrencyUSDC
Funding ChainBase
Card TypesVirtual, Physical, Digital Wallets

Create a cardholder

Create a Cardholder object representing the individual or business entity.

Requirements for individual cardholders:

  • First and last name (required for sanctions screening).
  • Date of birth (reduces false positives for watchlist matches).
  • Valid phone number or email (required for digital wallets).
  • Authorized user terms acceptance.
Command Line
cURL
No results
curl https://api.stripe.com/v1/issuing/cardholders \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -H "Stripe-Account:
{{CONNECTED_ACCOUNT_ID}}
"
\ -d name="Jenny Rosen" \ --data-urlencode email="jenny.rosen@example.com" \ --data-urlencode phone_number="+18008675309" \ -d status=active \ -d type=individual \ -d "individual[first_name]"=Jenny \ -d "individual[last_name]"=Rosen \ -d "individual[dob][day]"=1 \ -d "individual[dob][month]"=11 \ -d "individual[dob][year]"=1981 \ -d "individual[user_terms_acceptance][lead][date]"=1470266163 \ -d "individual[user_terms_acceptance][lead][ip]"="91.121.146.224" \ -d "billing[address][line1]"="Calle de la Paz 123" \ -d "billing[address][city]"=Cancun \ -d "billing[address][state]"="Q.R." \ -d "billing[address][postal_code]"=77500 \ -d "billing[address][country]"=MX

Create a card

When creating virtual and physical cards, use the financial_account_v2 parameter to specify which Connected Account’s financial account to withdrawn funds from. Standard physical card designs are available immediately, while custom card designs have an approximately 8 week lead time after you finalize the designs.

Hinweis

This preview requires express or priority shipping as cards ship from the US.

Command Line
cURL
No results
curl https://api.stripe.com/v1/issuing/cards \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -H "Stripe-Account:
{{CONNECTED_ACCOUNT_ID}}
"
\ -d cardholder=ich_123 \ -d financial_account_v2=fa_connected_123 \ -d currency=usd \ -d status=active \ -d type=virtual

Both physical and virtual card PINs are set to a random value at creation. Manage and view PINs using the Stripe API and Issuing Elements.

Spending controls

You can configure stablecoin-backed card spend with Spending controls.

Vorsicht

  • Spending controls are specified in USD
  • We removed the Stripe default 500 USD per-day limit for this integration.
  • An unconfigurable 10,000 USD per authorization limit applies.
  • When spending limits overlap, the most restrictive control applies.

Digital wallets

Enable cardholders to add cards to Apple Pay and Google Pay through manual provisioning or push provisioning.

Manual provisioning requirements: For manual provisioning, follow the manual provisioning steps.

Push provisioning requirements:

  • Complete manual provisioning steps for the US market.
  • Integrate with the Stripe mobile SDKs.
  • Obtain Apple Pay entitlement from Apple (for Apple Pay).

Learn more about digital wallet integration.

Monitor money movement

For stablecoin-backed Issuing, the Transactions v2 API contains all of the information about money movement, across card spend and transfers.

Retrieve transaction details

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl https://api.stripe.com/v2/money_management/transactions/trxn_123 \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ -H "Stripe-Context:
{{CONTEXT}}
"

You can find card spending in the Received Debit v2 API.

Retrieve received debit details

Command Line
cURL
Stripe CLI
Ruby
Python
PHP
Java
Node.js
Go
.NET
No results
curl https://api.stripe.com/v2/money_management/received_debits/rd_123 \ -H "Authorization: Bearer
sk_test_BQokikJOvBiI2HlWgH4olfQ2
"
\ -H "Stripe-Version: {{STRIPE_API_VERSION}}" \ -H "Stripe-Context:
{{CONTEXT}}
"

Testing

Test your integration in a sandbox environment using your US platform account. Stripe can configure it with an identical Issuing configuration.

Hinweis

  • Sandboxes support both v1 and v2 API testing.
  • Legacy test mode doesn’t support V2 APIs.

Refer to the Issuing testing guide to simulate purchases, refunds, and disputes.

Siehe auch

  • Issuing webhook events
  • Issuing disputes
War diese Seite hilfreich?
JaNein
  • Benötigen Sie Hilfe? Kontaktieren Sie den Kundensupport.
  • Schauen Sie sich unser Änderungsprotokoll an.
  • Fragen? Sales-Team kontaktieren.
  • LLM? Lesen Sie llms.txt.
  • Unterstützt von Markdoc