Making web request every interval, how much is too much?

looking to prevent players from exploiting in donation games. there is an endpoint to get the group’s pending robux amount. would calling this once per second to keep it updated be okay if there were also requests being made per player when added? i don’t think this is too much. because it’s not like you will have a bunch of players joining every minute. please let me know yals thoughts.

I’m not very great at things relating to websites, but I would update whatever you’re doing every 5-10 seconds, or create a manual refresh button to then update once.

HttpService is limited by 500 requests per minute.

You can give it the benefit of the doubt and send a little bit less under the limit, to prevent throttling, and you could send 5 requests per second.

Its ok. It will work fine but just make sure that if you have other scripts which use http service it should not throttle.