Share files &
notes instantly.

Upload files or write notes, get a short link. Choose retention, access control, and more.

📁

Drop a file here

or click to browse — up to 100 MB

Retention
Shareable link
Open

Upload from terminal

Use your CLI token for programmatic uploads.

# Upload file (retention: 1d, public)
curl -X POST \
  -H "X-Token: YOUR_CLI_TOKEN" \
  -F "file=@photo.jpg" \
  -F "retention=1d" \
  -F "auth_required=0" \
  http://localhost:8080/api/upload
# Share a note
curl -X POST \
  -H "X-Token: YOUR_CLI_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"title":"My note","content":"Hello!","retention":"7d"}' \
  http://localhost:8080/api/note