#akash.bhaskar
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- akash.bhaskar, 3 hours ago, 6 messages
- akash.bhaskar, 21 hours ago, 7 messages
- akash.bhaskar, 3 days ago, 13 messages
- akash.bhaskar, 3 days ago, 26 messages
- akash.bhaskar, 5 days ago, 3 messages
- akash.bhaskar, 6 days ago, 15 messages
hi, what's the question exactly?
i want to make a payment of 100$ but i am using an indian card,,so how can i get the stripe fees
you can do the payment in test mode using an appropriate test card, and then check what the fee was.
https://stripe.com/docs/testing#asia-pacific
https://stripe.com/docs/expand/use-cases#stripe-fee-for-payment
this is helpful, but before creating the payment intent.. want to know the stripe fees for a given payment method
our pricing is on on our website; you can write code to estimate what the fee will be based on that; and you can use test mode to test that code and confirm it calculates accurate values.
but i cant find it..pls send me the link
the link for what exactly?
pricing on the website
but its showing like this
yes. What's the question?
actually, my project has users worldwide and the payment currency is in usd..so if i use international cards..how can i display the stripe fees.?
how can i display the stripe fees.?
I believe I've answered that above. Did you have any other more specific questions or doubts I can clarify?
I can try to clarify or help but you need to show me some code you're written yourself, what you've tried so far and the specific problems you've run into.
one sec
const total =
(parseFloat(sum.total_amount) + parseFloat(rounded_platform_fees) + 0.3) / (1 - 0.029);
const project_total = total.toFixed(2);
to my understanding..0.3 and 0.029 are used for calculating stripe fees for us payments with us cards...so i want to change it for non us cards
That code assumes the fee is something like 2.9% + $0.30. Those are the fees for Stripe accounts located in countries like the US. (https://stripe.com/us/pricing)
If your Stripe account is located in India then it uses the fee structure on the page linked above, not that one.
no, my stripe account is in us..but i need to pay with indian or non us cards also
If your account is in the US it uses the pricing on https://stripe.com/us/pricing
you can do various payments in test mode using an appropriate test card, and then check what the fee was for the various scenarios you're interested in.
https://stripe.com/docs/testing#asia-pacific
https://stripe.com/docs/expand/use-cases#stripe-fee-for-payment
you can write code to estimate what the fee will be based on that; and you can use test mode to test that code and confirm it calculates accurate values.