Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

LaravelVueLearner's avatar

Too many Request and Too Many Attempts error in Laravel 9 Vue js 3 api error

what is best and permenant solution of this kind of api error? Failed to load resource: the server responded with a status of 429 (Too Many Requests)

0 likes
7 replies
MohamedTammam's avatar

Don't send too many requests

Check why your app is sending more than 60 requests per minute.

1 like
Sinnbeck's avatar

@LaravelVueLearner check if you have a rate limit in App\Providers\RouteServiceProvider and see if commenting it out helps

If it does, you can set it to only be active in production

if (App::environment('production')) {
    // rate limit 
} 
1 like
vincent15000's avatar

For development purposes, you can change the rate limit.

Please or to participate in this conversation.