Skip to main content
Question

What is the total storage limit across all keys in monday.storage?

  • August 28, 2026
  • 0 replies
  • 7 views

Hi Community,

I'm currently developing an app that uses monday.storage (key-value storage) to manage data structured like this:

json
{  "348745": [23, 554, 544],  "647893": [45, 783, 342, 544]}

I've already reviewed the documentation and understand the following limits for the Storage API:

  • Storage limit per key: 6 MB

  • Key length limit: 256 characters

  • Concurrency limit: 12 requests per second (per JWT token)

However, I couldn't find any explicit information regarding:

  1. Is there a total storage cap across all keys for a single app?

  2. What is the maximum number of keys that can be stored per app/instance?

Could anyone clarify if these limits exist? If my app needs to store a large volume of data, should I consider using Document DB instead? I understand Document DB offers 1 GiB per region with 50,000 reads/day and 20,000 writes/day.

Thanks in advance for your guidance!