# Create a blob
curl -d '{"hello":"world"}' https://jsonblob.io/
{"hello":"world"}
# Replace the blob
curl -d '{"foo":"bar"}' https://jsonblob.io/
{"foo":"bar"}
# Fetch the latest blob
curl https://jsonblob.io/
{"foo":"bar"}
# Fetch blob version 1
curl 'https://jsonblob.io/?version=1'
{"hello":"world"}
# Delete blob version 1
curl -X DELETE 'https://jsonblob.io/?version=1'
{"hello":"world"}