#vespergo
1 messages · Page 1 of 1 (latest)
Hi 👋
What do you mean "rate limit certain endpoints"? Like you want to limit how often your integration can call /v1/payment_intents (for example)?
yes
we had an issue with another payment processor where we racked up a big charge when someone tried to check if a card was real by trying to add a new card. they ran the endpoint like 3Mil times. we have implemented something on our side to prevent this now.. but we'd like to at least check if there is a way to limit on Stripe's side.
as a double safety net
Stripe will only limit your integration (across all endpoints) with our default rate limit of 100 requests per second. If you want to restrict your integration further that is something you would need to implement in your integration.
ok
what kinds of fraud prevention measures do you have if someone tries to exploit something like this?
We have Radar rules you can use to restrict/block charges based on a number of factors. You can read about Radar here: https://stripe.com/docs/radar
ty