qork
Shorten URLs from your terminal.
No account required. The installer drops a single static binary on your PATH.
curl -LsSf https://qork.me/install.sh | shRecommended on macOS & Linux. Downloads a prebuilt binary for your CPU (Intel or ARM) to ~/.cargo/bin — no Rust/cargo, no admin.
qork prints the short URL to stdout — pipe it, copy it, script it.
Quote URLs that contain spaces or shell metacharacters (&, ?) so your shell hands the whole string to qork intact.
Before shortening, qork checks the link is real — it won't shorten pasted text or a dead (404) URL. Pass --no-check to skip that.
| Command | Description |
|---|---|
qork <url> | Shorten a URL; prints the short link |
qork <url> --alias <name> | Use a custom short code |
qork <url> --json | Print the raw JSON (scripts/agents) |
qork <url> --no-check | Skip the live-link safety check |
qork help | Show help and documentation |
qork update | Update to the latest release (per install method) |
qork uninstall [--yes] | Fully remove qork from this system |
qork --version | Print the version |
Run qork --help for the full command reference.
Prefer a download? Grab a native installer for your platform. On macOS and Linux the command-line install above is the recommended path; on Windows the MSI/EXE installers work best.
Windows
macOS · the curl install above is recommended
Apple Silicon (M1+)
Unsigned .pkg — first run: right-click → Open.
Intel
Unsigned .pkg — first run: right-click → Open.
Linux · the curl install above is recommended
Debian / Ubuntu · x86_64
Installs to /usr/bin. sudo apt install ./<file>
Fedora / RHEL · x86_64
Installs to /usr/bin. sudo dnf install ./<file>
Debian / Ubuntu · ARM64
Installs to /usr/bin. sudo apt install ./<file>
Fedora / RHEL · ARM64
Installs to /usr/bin. sudo dnf install ./<file>
The same shortener behind a plain HTTP endpoint — no key, no SDK.
Both GET and POST hit https://qork.me/api/shorten and return the same JSON. Ideal for pipelines and autonomous agents that need a clean link.
Response
{
"shortCode": "ka9m",
"shortUrl": "qork.me/ka9m",
"href": "https://qork.me/ka9m",
"longUrl": "https://example.com",
"isNew": true
}Full agent guide: qork.me/llms.txt(opens in a new tab)