Key-value storage operations (strings, JSON, counters) scoped to a keyset.
GET Get a string entry by key
Returns a single string key-value entry.
PUT Create or update a string entry
Inserts or updates a string key-value entry with an optional TTL.
DELETE Delete a string entry
Deletes a string key-value entry by key.
GET Get a JSON entry by key
Returns a single JSON key-value entry.
PUT Create or update a JSON entry
Inserts or updates a JSON key-value entry with an optional TTL.
DELETE Delete a JSON entry
Deletes a JSON key-value entry by key.
POST Increment a counter
Increments a counter by the specified value (default 1).
POST Decrement a counter
Decrements a counter by the specified value (default 1).
GET List all string entries
Returns a paginated list of all string key-value entries for the given keyset.
GET List all JSON entries
Returns a paginated list of all JSON key-value entries for the given keyset.
GET List all counter entries
Returns a paginated list of all counter key-value entries for the given keyset.
GET Get a counter entry by key
Returns a single counter key-value entry.