Key Value Store
Key-Value store allows you to store any JSON data at a given key location. It's very simple to use, you can put data at a key, get data by key, and delete data by key. You can store up to 10GB of data per account. Data is automatically encrypted at rest.
Key Value Store endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET |
Get data by key /{key} |
Returns the stored data for a given key. If not result returns 404 error |
| PUT |
Put data for a given key /{key} |
Put any JSON data into a key. Key usually has a 'namespace' or 'collection' like "movies" and then the identifier For eg. PUT /movies/121212 Keys could be any arbitrary 'slash'… |
| DELETE |
Delete data by key /{key} |
Deletes the data at given key. Returns a 204 "No content" on success |
Key Value Store pricing
| Plan | Price | Rate limit | Quotas |
|---|---|---|---|
| BASIC | Free | 60 / minute |
|
| PRO | $15 / month | — |
|