Adjusting Laravel API Default Throttle Limit

💡
I'll preface this with, my API is all private and I know who is requesting and how many times and in some cases the request amount can be very high. I know this about my application, so I'm considering this safe. However, I wouldn't just remove this or adjust it with out understanding the implications. 

Solution

This can be adjusted in app/Http/Kernel.php

'api' => [
    'throttle:60,1',
    \Illuminate\Session\Middleware\StartSession::class,
    \Laravel\Jetstream\Http\Middleware\AuthenticateSession::class,
    \Illuminate\Routing\Middleware\SubstituteBindings::class,
],
Code block of the section in the file where throttle is being set