Rate limits
Overview
The Brevo API enforces rate limits to ensure platform stability and fair resource allocation. Rate limits restrict the number of API requests you can make within a specific time period.
The API provides three rate limit tiers:
- General rate limits: Standard limits for most use cases. Available to all account types (Free, Starter, Standard, Professional, and Enterprise)
- Advanced rate limits: Higher limits for advanced use cases. Available to Professional and Enterprise accounts
- Extended rate limits: Maximum limits for high-throughput integrations. Available to Enterprise accounts
When you exceed a rate limit, the API returns a 429 Too Many Requests status code. Monitor rate limit headers in responses to track your usage and prevent errors.
Rate limits are expressed in two units
- RPS (Requests per second): Maximum number of requests allowed per second
- RPH (Requests per hour): Maximum number of requests allowed per hour
Some endpoints have both RPS and RPH limits. When both are specified, you must respect both limits simultaneously.
General rate limits
POST /v3/smtp/email and GET /v3/smtp/blockedContacts, which have dedicated limits.Advanced rate limits
POST /v3/smtp/email and GET /v3/smtp/blockedContacts, which have dedicated limits.Extended rate limits
POST /v3/smtp/email and GET /v3/smtp/blockedContacts, which have dedicated limits.Handling rate limit errors
When you exceed a rate limit, the API returns a 429 Too Many Requests status code. Follow these practices to avoid rate limit errors:
Distribute requests evenly
Calculate your rate limit allowance and distribute requests evenly across the time window. For example, with a limit of 1,000 RPS, you can send up to 60,000 requests per minute if distributed evenly.
Upgrade to Enterprise
If your application requires higher throughput, upgrade to an Enterprise plan for increased rate limits.
Use webhooks for statistics
Instead of polling endpoints for statistics, implement webhooks to receive event-driven updates. This reduces API calls and improves efficiency.
Related resources
Rate limit headers
The API includes rate limit headers in all responses to help you monitor usage and implement retry logic. Learn how to read and use these headers in the rate limit headers guide.
Platform quotas
Rate limits control request frequency, while platform quotas limit the maximum number of objects you can create (campaigns, contacts, lists, etc.). See the platform quotas guide for information on maximum limits for object creation in Brevo.