📋 cl1p.io

A simple, privacy-focused paste service. Pastes are deleted after viewing.

Create a Paste

Send a POST request to create a new paste:

curl http://paste.cl1p.pro -d "Your content here"

Or with a file:

curl http://paste.cl1p.pro --data-binary @file.txt

Response:

{
  "id": "abc123",
  "raw_url": "http://paste.cl1p.pro/abc123",
  "web_url": "http://paste.cl1p.pro/web/abc123"
}

Retrieve a Paste

Use the paste ID to retrieve content:

curl http://paste.cl1p.pro/abc123

Or open in browser:

http://paste.cl1p.pro/web/abc123
⚠️ Privacy Notice: Each paste is automatically deleted after the first view. Make sure to save the content before closing!

Quick Examples

Share clipboard content:

pbpaste | curl -X POST http://paste.cl1p.pro/ --data-binary @-

Share a command output:

ls -la | curl -X POST http://paste.cl1p.pro/ --data-binary @-

Retrieve and use:

curl http://paste.cl1p.pro/abc123 | pbcopy