Copy and paste data between servers, terminals, laptops, and SSH sessions using a simple 6-digit code. Built for developers who live in the command line.
Clipboard contents stay private to your session and are never shared, sold, analyzed, or used for AI training.
curl https://rc.softweavers.net/abc12 -F copy = "hello world!"
curl https://rc.softweavers.net/abc123
Move snippets between local machines and remote servers instantly.
Simple temporary identifiers designed for fast terminal usage.
No SDKs or complex setup required.
Lightweight API optimized for quick developer interactions.
Clipboard IDs are short (6 characters) for ease of terminal use. While collisions are theoretically possible, they are extremely unlikely when using short-lived clipboards and proper expiration policies.
Rate limiting is enforced across the API to deter abuse, scraping, and brute-force enumeration of clipboard IDs.
For additional privacy, users may choose to encrypt clipboard contents client-side before sending them. Any lightweight encryption method can be used (for example XOR-based schemes), although stronger encryption is recommended for sensitive data.
Setting the clipboard content to an empty value will explicitly clear and invalidate stored data.
For best security and uniqueness, it is recommended to generate clipboard IDs randomly using standard shell tools,
for example: openssl rand -hex 3 or similar utilities that produce short random identifiers.
Simply add the following to use your plan:
curl -H "Authorization: your_key" ...