Platform quotas

Quota limits for account objects and resources

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}'
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}'
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}'
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}'
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 '{}'
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 '{}'
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}'
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 '{}'
General quotaEnterprise quota
300 created folders300 created folders