What is the request limit?

I wanna check for something on my API (it has no request limits)

I was wondering how many requests I could make per time period (e.g request every 10 secs).
Someone said the roblox request limit was 500 per minute, but I tried to have a request every second and it didn’t work.

2 Likes

Yes, HttpService has a limit of 500 per minute per server.

If the limit of 500 http GET / POST requests per minute is exceeded, the Service will stall entirely for approximately 30 seconds.

What is your actual question? What didn’t work?

What’s the optimum amount of requests per time period? Also I tried doing 60 get requests per minute, but it exceeded the limit.

You’d do 500 / 60 and round it to the nearest whole number to get the max amount you can do per second which is about 8

1 Like