For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Help CenterAPI KeysStatusSign In
GuidesAPI ReferenceChangelog
GuidesAPI ReferenceChangelog
  • Getting started
    • Overview
    • Quickstart
    • Authentication
    • Rate limits
      • Rate limit headers
      • Platform quotas
  • Messaging API
    • Send transactional email
    • Send transactional SMS
    • Send transactional WhatsApp
  • Marketing Platform
    • Manage your contacts
    • Track website activity
    • Send WhatsApp campaigns
    • Weekly event exports
  • Webhooks
    • Getting started
    • Conversations webhooks
    • Payment webhooks
    • Marketing webhooks
    • Transactional webhooks
    • Loyalty webhooks
    • Batched webhooks
    • Secure webhook calls
    • Meetings and phone webhooks
    • Push notification webhooks
    • Sales CRM webhooks
  • Conversations
    • Getting started
    • Customize the chat widget
    • JavaScript API reference
    • REST API reference
    • Conversations webhooks
  • eCommerce
    • Activate eCommerce app
    • Manage product categories
    • Manage products
    • Manage orders
    • Coupon collections
    • eCommerce tracker events
  • Loyalty
    • Overview
    • Set up a program
    • Enroll members
    • Credit & debit points
    • Read member data
    • Best practices
  • Custom Objects
    • Custom objects management
  • Brevo tracker and events
    • Getting started
    • JavaScript implementation
    • REST implementation
    • Legacy tracker documentation
    • Events
  • Accounts and settings
    • Senders and domains
    • User activity logs
    • External feeds
    • Invited users
LogoLogo
Help CenterAPI KeysStatusSign In
On this page
  • Marketing platform quotas
  • Total created email campaigns
  • Total created SMS campaigns
  • Total scheduled email campaigns
  • Total amount of media uploaded to content library
  • Total active automation workflows
  • Contact management quotas
  • Total stored contacts
  • Total created contact attributes
  • Total created contact lists
  • Total created contact folders
Getting startedRate limits

Platform quotas

Quota limits for account objects and resources
Was this page helpful?
Previous

SDKs and libraries

Official SDKs and client libraries for the Brevo API
Next
Built with

Quotas limit the number of objects you can create via the API, UI, or other integrations. Each quota applies to a specific resource type, such as campaigns or contacts.

When you reach a quota limit, delete unused objects to create new ones.

Marketing platform quotas

Total created email campaigns

Maximum number of email campaigns stored in your account, including drafts.

Endpoint: Create an email campaign

POST
/v3/emailCampaigns
1curl -X POST https://api.brevo.com/v3/emailCampaigns \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "name": "Newsletter - May 2017",
6 "sender": {}
7}'
Try it
General quotaEnterprise quota
10,000 email campaigns50,000 email campaigns

Total created SMS campaigns

Maximum number of SMS campaigns stored in your account, including drafts.

Endpoint: Create an SMS campaign

POST
/v3/smsCampaigns
1curl -X POST https://api.brevo.com/v3/smsCampaigns \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "content": "Get a discount by visiting our NY store and saying : Happy Spring!",
6 "name": "Spring Promo Code",
7 "sender": "MyShop"
8}'
Try it
General quotaEnterprise quota
300 SMS campaigns600 SMS campaigns

Total scheduled email campaigns

Maximum number of scheduled email campaigns that can exist simultaneously in your account.

Endpoint: Create an email campaign

POST
/v3/emailCampaigns
1curl -X POST https://api.brevo.com/v3/emailCampaigns \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "name": "Newsletter - May 2017",
6 "sender": {}
7}'
Try it
General quotaEnterprise quota
150 scheduled campaigns300 scheduled campaigns

Total amount of media uploaded to content library

Maximum storage capacity (in GB) for media files in the content library.

Endpoint: Upload an image to your account’s image gallery

POST
/v3/emailCampaigns/images
1curl -X POST https://api.brevo.com/v3/emailCampaigns/images \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "imageUrl": "https://somedomain.com/image1.jpg"
6}'
Try it
General quotaEnterprise quota
2 GB of media files5 GB of media files

Total active automation workflows

Maximum number of active marketing automation workflows that can run simultaneously in your account.

Guide: Custom Automation workflows

This quota is restricted to one account per company on the Starter Plan. It can be customized on Enterprise plans.

General quotaEnterprise quota
50 active workflows500 active workflows

Contact management quotas

Total stored contacts

Maximum number of contacts stored in your account.

Endpoint: Create a contact

POST
/v3/contacts
1curl -X POST https://api.brevo.com/v3/contacts \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
Try it
General quotaEnterprise quota
5M stored contacts900M stored contacts

Total created contact attributes

Maximum number of custom attributes that can be created for contacts.

Endpoint: Create a contact attribute

POST
/v3/contacts/attributes/:attributeCategory/:attributeName
1curl -X POST https://api.brevo.com/v3/contacts/attributes/normal/attributeName \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
Try it
General quotaEnterprise quota
200 contact attributes200 contact attributes

Total created contact lists

Maximum number of contact lists that can be created in your account.

Endpoint: Create a list

POST
/v3/contacts/lists
1curl -X POST https://api.brevo.com/v3/contacts/lists \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "folderId": 2,
6 "name": "Magento Customer - ES"
7}'
Try it
General quotaEnterprise quota
300 created lists600 created lists

Total created contact folders

Maximum number of contact folders that can be created in your account.

Endpoint: Create a folder

POST
/v3/contacts/folders
1curl -X POST https://api.brevo.com/v3/contacts/folders \
2 -H "api-key: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
Try it
General quotaEnterprise quota
300 created folders300 created folders