I am using following line of code to throttle API requests
Route::post('webhook/update', [TaskController::class, 'update'])->middleware(['auth:sanctum', 'verified','throttle:10000,1']);
I have kept very high throttle value on purpose but I still get 429 - Too Many Requests sometimes, the reason is unknown to me. Even though we are not hitting the API so many times in a min, it still throws back 429.