A JSON over HTTP server hosted at https://kloda.azurewebsites.net that exposes endpoints for writing to and reading from an in-memory, append-only log.
Append a record with a Base64-encoded value:
curl -X POST https://kloda.azurewebsites.net -d '{"record":{"value":"SGVsbG8gQXp1cmUK"}}'
Get a record by key:
curl -X GET https://kloda.azurewebsites.net -d '{"key":0}'