MyClip: Simple internet clipboard


Name was randomly generated, adapt to your liking




This is hosted on glitch.me, you can inspect the code your are running for security, and also don't expect data to be alive for long, as it is not durable persisted.

If your are concerned about privacy you can encrypt stored text with secret:

You can also use command line to curl to store and get data:

curl -X POST http://myclip.glitch.me/{key} --data "hello world"

If you want to post the contents of a file you can do:

curl -X POST http://myclip.glitch.me/{key} --data-binary @filename

And to get the contents:

curl http://myclip.glitch.me/{key}