Ephemeral JSON

json placeholder api with short-lived persistence for testing and demos

$ curl https://phemjson.com/todos $ curl -X POST -d "{\"title\":\"Thing 1\",\"status\":\"IN_PROGRESS\"}" -H "Content-Type: application/json" https://phemjson.com/todos $ curl -X PUT -d "{\"title\":\"Thing 2\",\"status\":\"TO_DO\",\"order\":5}" -H "Content-Type: application/json" https://phemjson.com/todos $ curl -X PATCH -d "{\"status\":\"COMPLETED\"}" -H "Content-Type: application/json" https://phemjson.com/todos/{id-here} $ curl https://phemjson.com/todos/{id-here} $ curl -X DELETE https://phemjson.com/todos/{id-here}