Skip to content
Create account
or
Sign in
The Stripe Docs logo
/
Ask AI
Create account
Sign in
Get started
Payments
Finance automation
Platforms and marketplaces
Money management
Developer tools
Get started
Payments
Finance automation
Get started
Payments
Finance automation
Platforms and marketplaces
Money management
Overview
Start an integration
Products
Global Payouts
Capital
Issuing cards
    Overview
    How Issuing works
    Global availability
    Manage fraud
    Cards
    Choose your card type
    Virtual cards
    Issue virtual cards
    Physical cards
    Manage cards
    Digital wallets
    Replacement cards
    Card programs
    Program management
    Customize your card program
    Add funds to your card program
    Credit Consumer Issuing
    Controls
    Spending controls
    Advanced fraud tools
    3DS
    Fraud challenges
    Real-time authorizations
    PIN management
    Issuing Elements
    Token Management
    Funding
    Balance
    Postfund your integration with Stripe
    Postfund your integration with Dynamic Reserves
    Purchases
    Authorizations
    Transactions
    Disputes
    Testing
    Merchant categories
    ATM Usage
    Issuing with Connect
    Set up an Issuing and Connect integration
    Update terms of service acceptance
    Connect funding
    Connected accounts, cardholders, and cards
    Embed card management UI
    Credit
    Overview
    Set up connected accounts
    Manage credit terms
    Report other credit decisions and manage AANs
    Report required regulatory data for credit decisions
    Manage account obligations
    Test credit integration
    Additional information
    Choose a cardholder type
    Customer support for Issuing and Treasury
    Issuing watchlist
    Marketing guidance (Europe/UK)
    Product and marketing compliance guidance (US)
Treasury
Manage money
HomeMoney managementIssuing cards

Issuing balance

Learn how to make funds available to your cards.

Copy page

To spend money using cards, add funds to the Issuing balance on your account. This balance represents funds reserved for Issuing and is safely separated from your earnings, payouts, and funds from other Stripe products.

     

Add funds using the Dashboard

Fund your Issuing balance from your Dashboard with the Add to balance button.

Next, choose Fund your Issuing balance.

You can add funds to your Issuing balance using a transfer from your existing Stripe balance or with a top-up from your external bank account. Your top-ups can take up to 5 business days to show up in your Issuing balance.

First, select the Issuing balance.

Second, initiate a transfer from your external bank account.

Top up from the API

To create a new top-up, use the create top-up endpoint.

Command Line
curl
curl https://api.stripe.com/v1/topups \ -u
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:
\ -d destination_balance=issuing \ -d amount=2000 \ -d currency=usd \ -d description="Top-up for Issuing, May 18, 2025" \ -d statement_descriptor=Top-up

Top-ups debit your bank account. Your top-ups can take up to 5 business days to become available. While they’re pending, they won’t be added to your Issuing balance.

Track your Issuing balance

View your Issuing funds from your balances dashboard.

To programmatically track the funds that are available to spend, look at the issuing object returned by the retrieve balance endpoint. This includes your available and pending Issuing funds.

Command Line
curl
curl https://api.stripe.com/v1/balance \ -u
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:
{ "object": "balance", "available": [ { "amount": 0, "currency": "usd", "source_types": { "card": 0 } } ], "pending": [ { "amount": 0, "currency": "usd", "source_types": { "card": 0 } } ], "issuing": { "available": [ { "amount": 100, "currency": "usd" } ] }, "livemode": false }

To track your pending Issuing balance, you can use the list top-ups endpoint and filter on status of pending.

Pay out your Issuing balance

To pay out your available Issuing funds, use the create payout endpoint and set the source_balance of the payout to issuing.

Command Line
cURL
curl https://api.stripe.com/v1/payouts \ -u "
sk_test_BQokikJOvBiI2HlWgH4olfQ2
:"
\ -d source_balance=issuing \ -d amount=100 \ -d currency=usd

Enable notifications about your balance

You can enable email notifications to help monitor your Issuing balance from your settings. To configure these notifications:

  1. Visit your Balance notifications settings page.
  2. Choose from two types of alerting thresholds:
    • Fixed amount: Receive an alert whenever your Issuing balance falls below this amount.
    • Ratio of balance to rolling spend: Receive an alert whenever the ratio of your Issuing balance to your spend over the previous 24 hours falls below the threshold. For example, if you set your threshold to 80% and your spend over the past day is 100 USD, you receive an alert whenever your balance falls below 80 USD.
Was this page helpful?
YesNo
Need help? Contact Support.
Join our early access program.
Check out our changelog.
Questions? Contact Sales.
LLM? Read llms.txt.
Powered by Markdoc