In app/Http/Kernel.php
Laravel has a default throttle limit for all api routes.
protected $middlewareGroups = [
...
'api' => [
'throttle:60,1',
],
];
Comment or increase it.
Related Contents:
- Laravel 8 – can’t get data from database
- How to use multiple databases in Laravel
- How to set up file permissions for Laravel?
- How to Create Multiple Where Clause Query Using Laravel Eloquent?
- How to pass data to view in Laravel?
- Laravel 5.1 API Enable Cors
- How to do this in Laravel, subquery where in
- What is ::class in PHP?
- Laravel: PDOException: could not find driver
- Laravel Eloquent Query Using WHERE with OR AND OR?
- How to create Helper Methods on Laravel not a Facade
- Download files in laravel using Response::download
- Laravel Eloquent select all rows with max created_at
- Laravel 5 – Clear Cache in Shared Hosting Server
- How Can I Set the Default Value of a Timestamp Column to the Current Timestamp with Laravel Migrations?
- How to create a laravel hashed password
- Laravel orderBy on a relationship
- Laravel migration: unique key is too long, even if specified
- Creating and Update Laravel Eloquent
- How to sort a Laravel query builder result by multiple columns?
- Extension gd is missing from your system – laravel composer Update
- Tell Composer to use Different PHP Version
- Laravel app stopped working after upgrading to php 8
- Laravel 5.4 on PHP 7.0: PDO Exception – Could not find driver (MySQL)
- Calculate difference between two dates using Carbon and Blade
- Sorting Laravel Collection via Array of ID’s
- MVC (Laravel) where to add logic
- Get the Query Executed in Laravel 3/4
- Laravel PHP Command Not Found
- Doing HTTP requests FROM Laravel to an external API
- How to join three table by laravel eloquent model
- Php artisan make:auth command is not defined
- Prevent Browser’s Back Button Login After Logout in Laravel 5
- laravel 5.5 The page has expired due to inactivity. Please refresh and try again
- Composer killed while updating
- How to remove /public/ from a Laravel URL
- Laravel sanctum unauthenticated
- Issue with Laravel Rules & Regex (OR) operator
- Laravel Checking If a Record Exists
- Why do I have to run “composer dump-autoload” command to make migrations work in laravel?
- Laravel mail: pass string instead of view
- How can I paginate a merged collection in Laravel 5?
- How to alias the name of a column in Eloquent
- Laravel Cannot delete or update a parent row: a foreign key constraint fails
- How to pass a PHP variable to Vue component instance in Laravel blade?
- Laravel 5.2 Auth not Working
- How to exclude certains columns while using eloquent
- Change name of Laravel’s created_at and updated_at
- Check if laravel model got saved or query got executed
- Laravel validation: exists with additional column condition – custom validation rule