#Paul McGillivray - Stripe fees
1 messages · Page 1 of 1 (latest)
Hello, yes there is definitely a way to get this fee via the API
If you are starting your integration now, you will probably be taking with our PaymentIntents API in some way
PaymentIntent objects have an array of Charges which represent attempts to charge a user. https://stripe.com/docs/api/payment_intents/object#payment_intent_object-charges
Charge objects have a balance_transaction property that represents the money going in to your account from the charge
https://stripe.com/docs/api/charges/object#charge_object-balance_transaction
And balance transactions have a fee property which tells you how much the Stripe fee was on the transaction https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-fee
Is that helpful to you here?