rustypaste
Upload files or share URLs. Response is a plain-text URL. Copy requires HTTPS for most browsers (HTTP often blocks clipboard access).
Press Enter to submit
Press Enter to submit
Choose file or drag & drop here
Drag files, paste images, or use Ctrl+V / ⌘V on this page
Advanced options
Sent as HTTP header:
Authorization: <token>CLI examples
Upload a file:
curl -F 'file=@/path/to/file.txt' http://HOST:8000/
One-time file (deleted after first download):
curl -F 'oneshot=@/path/to/file.txt' http://HOST:8000/
Share a URL:
curl -F 'url=https://example.com' http://HOST:8000/
Share a file from URL:
curl -F 'remote=https://example.com/file.txt' http://HOST:8000/
With authorization:
curl -H 'Authorization: my_token' -F 'file=@file.txt' http://HOST:8000/