---
updatedAt: 2026-08-25T14:11:26.000Z
---

Fetch the complete documentation index at: https://docs.mollie.com/llms.txt. Use this file to discover all available pages before exploring further. Append .md to any documentation page URL to get its markdown version.

# Application fees

Application Fees allow your platform to collect a fee on every payment you process on behalf of a connected account. You define the amount, flat, percentage (or a combination of those) and Mollie moves it to your balance automatically when the payment succeeds.

Your connected accounts pay their own [Mollie transaction fee](https://www.mollie.com/pricing) and remain liable for any refunds or chargebacks. The Application Fee sits entirely on top of that.

## How the money moves

![](https://files.readme.io/a8d32f95efd237d6ecb42d0773f0edb26f44fc0d47fc2df04a2f6c6fdc757d16-Application_fee.png)

When a payment succeeds, Mollie automatically transfers the Application Fee from your connected account's balance to yours. Your connected account sees it as a named line item on their settlement report, using the description you provided when creating the payment.

For how this fits the platform money-flow model, see [Core concepts](https://docs.mollie.com/docs/core-concepts).

<Callout icon="📘" theme="info">
  You are responsible for invoicing your connected accounts for the Application Fees you charge and for handling VAT correctly on those fees.
</Callout>

## Creating an Application Fee

Add the `applicationFee` object to your [Create payment](https://docs.mollie.com/reference/create-payment) or [Create subscription](https://docs.mollie.com/reference/create-subscription) request:

```json
{
  "amount": { "currency": "EUR", "value": "10.00" },
  "description": "Order #12345",
  "redirectUrl": "https://example.com/order/12345",
  "webhookUrl": "https://example.com/webhooks/mollie",
  "profileId": "pfl_zcfJRjkf6P",
  "applicationFee": {
    "amount": { "currency": "EUR", "value": "1.50" },
    "description": "Platform fee for order #12345"
  }
}
```

The `applicationFee.description` appears in your settlement reports for both you and your connected account: we recommend using something descriptieve that makes reconciliation easy for both sides.

<Image src="https://files.readme.io/a36f0e9b811c49811e3774abadab8efb5d6347f9202298556001455b2666741c-SC_app_fees.png" framed={true} />

You can find all received Application Fees in the **Balance** tab of your Mollie Web App.

<Image src="https://files.readme.io/5ac4bb5bfc9795860988a2ddea2664a66293f6cbde9cd23b99a12e43ed5ec353-SC_application_fee.png" framed={true} />

### Fee limits

The ceiling depends on the API you are using and your commercial arrangement with Mollie.

**Payments API:** the max fee is capped by a formula: \``Max fee = payment amount − (€0.35 + 6% × payment amount)`\`

For a €10.00 payment: €10.00 − (€0.35 + €0.60) = **€9.05 maximum**

The minimum is €0.01.

**Orders API (deprecated):** a 10%/€2.00 cap applies.

**Buy-rate commercial arrangement:** if your platform is on a buy-rate agreement with Mollie, the formula-based cap above does not apply. The effective ceiling is higher. Contact your partner manager for the specific limits that apply to your account.

## Refunds

Application Fees are **non-refundable**. When your connected account refunds a consumer, the full refund amount is deducted from their balance; your Application Fee stays in your balance.

<Image src="https://files.readme.io/e76c3d4049fe94152c7446336955073de0e4c58bdac2a350d769df7a303dfeb9-Application_fee_-_Refunds.png" framed={true} />

## Finding your Application Fees

* **Mollie Web App → Balance:** a quick overview of received Application Fees per transaction.
* <Anchor target="_blank" href="https://docs.mollie.com/docs/transaction-margin-report">Transaction Margin Report</Anchor>: a CSV export with per-transaction fee details, broken down by connected account and payment method. The most complete view for Connect partners. Generate it from **Reports → Transaction Margin** in your Web App.
* <Anchor target="_blank" href="https://docs.mollie.com/reference/list-balance-transactions">Balance Transactions API</Anchor>: programmatic access to all movements within your balance, including Application Fees. Use this for automated reconciliation.
* <Anchor target="_blank" href="https://docs.mollie.com/reference/settlements-api">Settlements API</Anchor>: Application Fees included per settlement payout. Useful for matching fees to bank payouts.
* [Settlement Report](https://docs.mollie.com/docs/settlement-report): a `CSV` export of all transactions within a settlement, including Application Fees. Useful for bookkeeping purposes.

## Testing

**Test payments do not trigger any balance movement:** no Application Fee is transferred and no Mollie transaction fee is charged.

To verify your fee is working correctly, make a small live payment. Once completed, the Application Fee will appear in the **Balance** tab of your Mollie Web App.