Stash
Stash API specification.
For more information, read the Getting Started Guide.
All API endpoints are POST operations and any parameters must be fully contained in the request body.
Create Keyspace
Request body
application/json
Example
Delete Keyspace
Request body
application/json
Example
Delete Value
Delete a value in a table. This operation also returns the value as it existed in the moment before it was deleted.
Request body
application/json
Example
Get Keyspace
Request body
application/json
Example
Get Value
Get a Value from a Keyspace. Always returns the latest Value that has been stored. Empty object is returned when the given key does not exist.
Request body
application/json
Example
Example
List Values
Request body
application/json
Example
Set Value
Set a Value in a Keyspace.
This operation will overwrite any previous Values that have been stored in the same Key.
Request body
application/json
The value associated with the key.
Can be any one of:
string
number
boolean
array
object
Only numbers that can be represented using 64-bit floats are supported (IEEE-754). For larger numbers or higher precision, consider storing them as a string instead.
Example