#Luke.eth
1 messages · Page 1 of 1 (latest)
Hi there!
You want the Stripe fee before the payment or after the payment?
for card payment, would it be the same no matter the country?
Accordring to https://stripe.com/pricing, the fee is different for international cards. But the exact country shouldn't matter I think.
What is the definition for international card? @silver ore and what's the different between stripe fee before and after the payment?
and what's the different between stripe fee before and after the payment?
If you want to know the Stripe fee before the payment it's tricky (you have to compute it yourself). But after the payment you can find the fee using the Stripe API. That's why I'm asking this question.
What is the definition for international card?
For this types of questions you should ask Stripe support directly: https://support.stripe.com/contact
I'd like to compute the payment myself. This is because I need to show how much I'm going to charge my buyers. How is it possible for me to do this?
This is because I need to show how much I'm going to charge my buyers.
The Stripe fee is already included in the total. So if you ask your customers to pay $10, they will only pay $10. And you will get a little less than $10.
Let say I'm a reseller and I would like to charge a 0.5% ontop of the item. How would I calculate it? without knowing beforehand how much Stripe charges
So you want base price + stripe fee + 0.5%?
I would do something simple, like base price + X%, where X covers both the Stripe fee and your own margin.
The stripe fee is applied on the invoice amouont correct?
The stripe fee is applied on the invoice amouont correct?
What do you mean? Like I said before: The Stripe fee is already included in the total. So if you ask your customers to pay $10, they will only pay $10. And you will get a little less than $10.
yes but how can I calculate X to cover Stripe fee when I couldn't get it before the transaction?