#isaac.mk-fee
1 messages · Page 1 of 1 (latest)
Hi! The Stripe fee depends on the payment method used and the country. You can learn more about the fees on our pricing page: http://stripe.com/pricing
And if you look at the balance transaction of the PaymentIntent, you can get some information about the fee in fee_details: https://stripe.com/docs/api/balance_transactions/object?lang=node#balance_transaction_object-fee_details
how can I know the formula that calculate the fee in the code.
You want to compute the fee before or after the payment?
yes
yes
Also I want to know which factor influence the service fee. The stripe account's country or the country of the order where the order produce.
To get the fee after the payment, just look at the balance transaction. To compute the fee before, it's a bit tricky since it can vary.
Also I want to know which factor influence the service fee. The stripe account's country or the country of the order where the order produce.
or the card's country
it's the Stripe account's country and the card's country.
for example look at https://stripe.com/fr/pricing versus https://stripe.com/au/pricing .
The test card number is 4000000760000002. and the payment intent id is "pi_3KjE2UGIuqZWVOYB0lysHcin". can you tell me how the fee produce?
it's 2.9% + 30c + 1% for being an international transaction
2.9% of 600 + 30 + (1% of 600) is 53c, which is the fee as you see it on https://dashboard.stripe.com/test/payments/pi_3KjE2UGIuqZWVOYB0lysHcin .
thank you so much for your help. My problem solved
I want to know if the service fee in america can max to 4.9%+30c
what do you mean by "max" as a verb?
I mean if the card is international and the currency is foreign as I see 2.9%+30¢per successful card charge+1% for international cards+1% if currency conversion is required
So I want to know the max rate
I don't know
there are lot of factors involved here and the pricing can change over time occasionally
the best approach is to test it
test the common payment flows you will use in your business, using our various test cards(https://stripe.com/docs/testing#international-cards), and check what the fee was on those in test mode, so you know what to expect