Laravel Idea for PhpStorm - Full-featured IDE for productive artisans!

Managing API Rate Limits in Laravel Through Job Throttling

Last updated on by

Managing API Rate Limits in Laravel Through Job Throttling image

When working with external services like AWS SES for email delivery, preventing API flooding is crucial. Laravel provides an elegant solution through Redis::throttle to manage your rate limits effectively. Let's explore how to implement this to maintain optimal API usage.

Understanding Redis::throttle

The Redis::throttle method in Laravel offers a powerful way to control the flow of your queued jobs. This ensures you stay within API rate limits and avoid temporary or permanent service blocks.

Redis::throttle('key-name')
->allow(10)
->every(5)
->then(function () {
// Your job logic here
});

Real-World Implementation

Let's build a practical example for managing email sending rates with AWS SES. We'll create a complete middleware system to handle rate limiting:

<?php
 
namespace App\Http\Middleware;
 
use Closure;
use Illuminate\Support\Facades\Redis;
 
class EmailRateLimit
{
public function handle($job, Closure $next)
{
Redis::throttle('email-throttle')
->block(2)
->allow(10)
->every(2)
->then(
function () use ($job, $next) {
$next($job);
},
function () use ($job) {
$job->release(30);
}
);
}
}

To apply this in your notification system:

<?php
 
namespace App\Notifications;
 
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Notification;
use Illuminate\Notifications\Messages\MailMessage;
use App\Http\Middleware\EmailRateLimit;
 
class EmailDispatch extends Notification implements ShouldQueue
{
use Queueable;
 
protected $content;
 
public function __construct($content)
{
$this->content = $content;
}
 
public function via($notifiable)
{
return ['mail'];
}
 
public function toMail($notifiable)
{
return (new MailMessage)
->subject($this->content['subject'])
->line($this->content['body']);
}
 
public function middleware(): array
{
return [new EmailRateLimit];
}
}

And finally, implementing it in your controller:

<?php
 
namespace App\Http\Controllers;
 
use App\Models\User;
use App\Notifications\EmailDispatch;
use Illuminate\Http\Request;
 
class MailController extends Controller
{
public function dispatch(Request $request)
{
$content = [
'subject' => 'Important Update',
'body' => 'Your account has been updated successfully.'
];
 
$user = User::find($request->user_id);
$user->notify(new EmailDispatch($content));
 
return response()->json(['message' => 'Email queued for delivery']);
}
}

This implementation ensures your application respects API rate limits while maintaining efficient email delivery through AWS SES or any other email service provider.

Harris Raftopoulos photo

Senior Software Engineer | 15+ years in PHP, 11+ with Laravel

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.

Laravel Forge logo

Laravel Forge

Easily create and manage your servers and deploy your Laravel applications in seconds.

Laravel Forge
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $7500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
Laravel Idea for PhpStorm logo

Laravel Idea for PhpStorm

Ultimate PhpStorm plugin for Laravel developers, delivering lightning-fast code completion, intelligent navigation, and powerful generation tools to supercharge productivity.

Laravel Idea for PhpStorm
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
Bacancy logo

Bacancy

Supercharge your project with a seasoned Laravel developer with 4-6 years of experience for just $2500/month. Get 160 hours of dedicated expertise & a risk-free 15-day trial. Schedule a call now!

Bacancy
Lucky Media logo

Lucky Media

Get Lucky Now - the ideal choice for Laravel Development, with over a decade of experience!

Lucky Media
Lunar: Laravel E-Commerce logo

Lunar: Laravel E-Commerce

E-Commerce for Laravel. An open-source package that brings the power of modern headless e-commerce functionality to Laravel.

Lunar: Laravel E-Commerce
LaraJobs logo

LaraJobs

The official Laravel job board

LaraJobs
SaaSykit: Laravel SaaS Starter Kit logo

SaaSykit: Laravel SaaS Starter Kit

SaaSykit is a Multi-tenant Laravel SaaS Starter Kit that comes with all features required to run a modern SaaS. Payments, Beautiful Checkout, Admin Panel, User dashboard, Auth, Ready Components, Stats, Blog, Docs and more.

SaaSykit: Laravel SaaS Starter Kit
Supercharge Your SaaS Development with FilamentFlow: The Ultimate Laravel Filament Boilerplate logo

Supercharge Your SaaS Development with FilamentFlow: The Ultimate Laravel Filament Boilerplate

Build your SaaS application in hours. Out-of-the-box multi-tenancy and seamless Stripe integration. Supports subscriptions and one-time purchases, allowing you to focus on building and creating without repetitive setup tasks.

Supercharge Your SaaS Development with FilamentFlow: The Ultimate Laravel Filament Boilerplate
JetShip - Laravel Starter Kit logo

JetShip - Laravel Starter Kit

A Laravel SaaS Boilerplate and a starter kit built on the TALL stack. It includes authentication, payments, admin panels, and more. Launch scalable apps fast with clean code, seamless deployment, and custom branding.

JetShip - Laravel Starter Kit
Rector logo

Rector

Your partner for seamless Laravel upgrades, cutting costs, and accelerating innovation for successful companies

Rector
MongoDB logo

MongoDB

Enhance your PHP applications with the powerful integration of MongoDB and Laravel, empowering developers to build applications with ease and efficiency. Support transactional, search, analytics and mobile use cases while using the familiar Eloquent APIs. Discover how MongoDB's flexible, modern database can transform your Laravel applications.

MongoDB

The latest

View all →
Managing API Rate Limits in Laravel Through Job Throttling image

Managing API Rate Limits in Laravel Through Job Throttling

Read article
Optimizing Route Permissions with Laravel's Enhanced Enum Support image

Optimizing Route Permissions with Laravel's Enhanced Enum Support

Read article
PIE (PHP Installer for Extensions) image

PIE (PHP Installer for Extensions)

Read article
Efficient Large Dataset Handling in Laravel Using streamJson() image

Efficient Large Dataset Handling in Laravel Using streamJson()

Read article
Access Request Data Fluently in Laravel 11.34 image

Access Request Data Fluently in Laravel 11.34

Read article
Handling Default Values in Laravel Request using mergeIfMissing image

Handling Default Values in Laravel Request using mergeIfMissing

Read article