App: NoSQL Databases

NoSQL Databases
NoSQL Databases gives you a fast, simple, and extremely affordable way to store and retrieve any kind of data. Every operation is a single API call and costs only 1-2 credits, making it one of the cheapest ways to add persistent storage to any project on this platform.How It Works
You create named tables in the admin area, and then use the API to store and retrieve records in those tables. Each record is identified by a unique key that you choose, and the data itself is a flexible JSON object that can hold any fields you need. There is no schema to define and no columns to set up. Just send your data and it gets stored.
There are four simple operations:
Query - Retrieve a record by its unique key. Returns the full data object stored in that row.
Insert - Store a new record or completely replace an existing one. You provide the unique key and a data object with all the fields and values you want stored.
Update - Merge new fields into an existing record. Fields you include get added or overwritten, and fields you do not include are left exactly as they are. This is perfect for changing one or two values without touching the rest of the record.
Delete - Permanently remove a record by its unique key.Built For Chain Commands
NoSQL Databases is designed to work with Chain Commands, the visual workflow automation system. You can build multi-step automations that read data from one table, process it, and write results to another table. Use it to track state between workflow steps, accumulate results over time, or store configuration that your workflows reference on every run. Any chain command step can query or update a NoSQL record as part of its flow.Storage For Custom Apps
When you build a Custom App using the AI app builder, your app often needs somewhere to store data. NoSQL Databases provides that storage with zero setup. Your custom app can create records, read them back, update individual fields, and delete records as needed. There is no external database to configure, no connection strings to manage, and no extra cost beyond the per-operation credits. The AI that builds your custom app already knows how to use the NoSQL commands, so it can wire up data storage automatically as part of the app it builds for you.Great For Games And Interactive Projects
If you are building a video game, quiz system, leaderboard, or any interactive project that needs to save and load state, NoSQL Databases handles it easily. Store player profiles, game progress, high scores, inventory, session data, or anything else as simple JSON records. The low cost per operation means even high-frequency reads and writes stay affordable, and the flexible schema means you can add new data fields at any time without changing anything about your existing records.Reliable And Affordable
All data is stored on AWS DynamoDB, which provides automatic replication, high availability, and consistent performance at any scale. You do not need to manage servers, worry about backups, or think about database administration. Every operation costs just 1-2 credits, and there is no daily fee to keep the app installed. You only pay for what you use.
- Store and retrieve data using simple key-value operations with query, insert, update, and delete actions
- Data is stored on high-availability AWS DynamoDB infrastructure with no server management required
- Organize data into multiple named tables, each with their own unique keys and records
- Update operations merge new fields into existing records without losing data you did not change
- Insert operations replace an entire record for when you need a clean write
- All operations cost only 1-2 credits per call, making it one of the cheapest storage options available
- Use with Chain Commands to build automated workflows that read, write, and transform data between steps
- Provides persistent data storage for AI-built Custom Apps without needing any external database