> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Introduction ## Article: Introduction ## Article Link: https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/introduction.md ## Article Content: # About the Storage Item API The Storage Item API allows you to manage data storage containers across [automations](https://dev.wix.com/docs/api-reference/business-management/automations/introduction.md). Storage items store data in key-value pairs and support different types, including strings, booleans, numbers, and counters that you can [update atomically](#atomic-updates). Use storage items to synchronize, store, and share data across automations. Using the Storage Item API, you can: - [Create storage items](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/create-storage-item.md) with different value types. - [Update storage item values](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/update-storage-item-value.md). - Atomically [update counters](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/update-storage-item-counter-by.md) to maintain data integrity. - [Update storage item tags](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/bulk-update-storage-item-tags.md) for multiple storage items. - [Get](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/get-storage-item.md) and [Query Storage Items](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/query-storage-items.md). > **Note**: You can create up to 100 storage items. ## Atomic updates Atomic updates either complete fully or fail entirely. They can't succeed partially. Atomic updates help maintain data integrity when multiple automations update the same storage item at the same time. The Storage Item API supports atomic updates for items of type `COUNTER`, which you can update by calling [Update Storage Item Counter By](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/update-storage-item-counter-by.md). ## Before you begin To manage storage items, the site must have [at least 1 automation](https://support.wix.com/en/article/wix-automations-creating-an-automation-with-the-new-builder). ## Use cases - [Share data across automations](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/sample-flows.md#share-data-across-automations). - [Store user preferences](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/sample-flows.md#store-user-preferences). - [Track and update site metrics](https://dev.wix.com/docs/api-reference/business-management/automations/storage-item/sample-flows.md#track-and-update-metrics). ## Terminology - Storage item: A container that stores data across automations in a key-value pair. - Tag: Label assigned to a storage item, enabling flexible categorization, filtering, and data management. Learn more about [tags](https://dev.wix.com/docs/api-reference/business-management/tags/introduction.md). - Counter: Storage type that stores a numeric value that can be incremented or decremented using atomic operations. - Atomic update: Operation that completes in full or not at all, thereby preserving data integrity during concurrent updates. ## See also - [Wix Automations: an overview](https://support.wix.com/en/article/wix-automations-about-the-new-automations-builder) - [About Wix Automations](https://dev.wix.com/docs/api-reference/business-management/automations/introduction.md) - [About the Tags API](https://dev.wix.com/docs/api-reference/business-management/tags/introduction.md) @sdk_package_setup