Collect application fees
Monetize your marketplace by collecting application fees from transactions.
As a marketplace, you’re responsible for paying Stripe fees. These include transaction fees, per-connected account fees, and dispute fees. To offset these fees and ensure that you make a profit, you collect application fees from each transaction rather than transferring the full amount to your connected account. Since you handle Stripe fees, the application fee is the only fee that your connected accounts see.
Stripe fees are automatically debited from your Stripe balance. To ensure your balance doesn’t go negative and you have a healthy payments margin, ensure that you charge a large enough application fee.
Collect fees when using destination charges
When a payment is processed, rather than transfer the full amount of the transaction to a connected account, your platform can decide to take a portion of the transaction amount in the form of fees. You can set fee pricing in two different ways:
- Use the platform pricing tool in the Dashboard to set and test application fee pricing rules.
- Set your pricing rules in-house, specifying fees directly in a PaymentIntent using the application_fee_amount parameter. Fees set with this method override the pricing logic specified in the Platform Pricing Tool.
When creating charges with an application_
, the full charge amount is immediately transferred from the platform to the transfer_
account after the charge is captured. The application_
(capped at the full amount of the charge) is then transferred back to the platform.
After the application fee is collected, an Application Fee object is created. You can view a list of application fees in the Dashboard, with the application fees, or in Sigma. You can also use the amount
property on the application fee object for itemized fee reporting.
When using an application_
, know that:
- The
application_
is capped at the total transaction amount.fee_ amount - The
application_
is always computed in the same currency as the transaction.fee_ amount - The application fee settles in the same currency as the connected account’s settlement currency. For cross-border destination charges, this might differ from your platform’s settlement currency.
- Your platform pays the Stripe fee after the
application_
is transferred to your account.fee_ amount - No additional Stripe fees are applied to the amount.
- Your platform can use built-in application fee reporting to reconcile fees collected.
- In Stripe-hosted dashboards or components such as the Payment details component, your connected account can view both the total amount and the application fee amount.
Flow of funds with destination charges 
With the above code, the full charge amount (10.00 USD) is added to the connected account’s pending balance. The application_
(1.23 USD) is subtracted from the charge amount and is transferred to your platform. Stripe fees (0.59 USD) are subtracted from your platform account’s balance. The application fee amount minus the Stripe fees (1.23 USD - 0.59 USD = 0.64 USD) remains in your platform account’s balance.

The application_
becomes available on the platform account’s normal transfer schedule, just like funds from regular Stripe charges.
Collect fees when using separate charges and transfers
When using separate charges and transfers, you can collect fees on a charge by reducing the amount you transfer to the destination accounts. For example, consider a restaurant delivery service transaction that involves payments to the restaurant and to the driver:
- The customer pays a 100 USD charge.
- Stripe collects a 3.20 USD fee and adds the remaining 96.80 USD to the platform account’s pending balance.
- The platform transfers 70 USD to the restaurant’s connected account and 20 USD to the driver’s connected account.
- A platform fee of 6.80 USD remains in the platform account.
You typically need a ledger to keep track of where to route funds, especially if you are holding the funds for more than a short amount of time. For example, if a ticketing platform holds on to a payment and sends the funds only after a concert is over, they need to have a ledger or some other way to keep track of that logic.
Application fees with funds segregation
Funds segregation is a private preview feature that allows you to debit application fees directly from allocated funds during transfer, providing clean accounting separation. Contact your Stripe account manager to request access.
Flow of funds with separate charges and transfers

To learn about processing payments in multiple currencies with Connect, see working with multiple currencies.
Next steps
Next, learn how to pay out money to your connected accounts.