Laravel Routing: Rate Limiting
Route::middleware('auth:api', 'throttle:rate_limit,1')->group(function () {
Route::get('/user', function () {
//
});
}); Laravel includes a middleware to rate limit access to routes within your application.
Semantic portal