# Create a blob using a UUID generated client side
curl -d '{"hello":"world"}' https://jsonblob.io/
{"hello":"world"}
# Fetch the blob
curl https://jsonblob.io/
{"hello":"world"}
# Create a blob without providing a UUID
curl -i -d '{"foo":"bar"}' https://jsonblob.io
x-blob-latest-version: 1
x-blob-read-only-hash: 09c6d146937a16e9716ae7b7043df1f54a33f581c17fdf5553756aa4e62b81a8
x-blob-uuid: ced0794f-0e44-4192-9827-40bb21d664ae
# Fetch the blob using read-only hash specified in the header
curl https://jsonblob.io/09c6d146937a16e9716ae7b7043df1f54a33f581c17fdf5553756aa4e62b81a8
{"foo":"bar"}