A simple, privacy-focused paste service. Pastes are deleted after viewing.
Send a POST request to create a new paste:
curl http://q8owosksg484wwoscwgggk40.cl1p.pro -d "Your content here"
Or with a file:
curl http://q8owosksg484wwoscwgggk40.cl1p.pro --data-binary @file.txt
Response:
{
"id": "abc123",
"raw_url": "http://q8owosksg484wwoscwgggk40.cl1p.pro/abc123",
"web_url": "http://q8owosksg484wwoscwgggk40.cl1p.pro/web/abc123"
}
Use the paste ID to retrieve content:
curl http://q8owosksg484wwoscwgggk40.cl1p.pro/abc123
Or open in browser:
http://q8owosksg484wwoscwgggk40.cl1p.pro/web/abc123
Share clipboard content:
pbpaste | curl -X POST http://q8owosksg484wwoscwgggk40.cl1p.pro/ --data-binary @-
Share a command output:
ls -la | curl -X POST http://q8owosksg484wwoscwgggk40.cl1p.pro/ --data-binary @-
Retrieve and use:
curl http://q8owosksg484wwoscwgggk40.cl1p.pro/abc123 | pbcopy