Short links. One command.
Paste a URL into your terminal. Get a short link back. No account needed.
Latest release ↗1. Get qork.
Choose your platform, copy the command, and run it in your terminal.
curl -LsSf https://qork.me/install.sh | shRun in Terminal on macOS or your Linux shell. Downloads a ready-to-run binary for Intel or ARM; no Rust toolchain required.
2. Make it shorter.
Replace the example URL with yours. qork prints a full short link, ready to copy or pipe into another command.
Put URLs in quotes when they contain spaces, &, or ?. Custom aliases are optional and must be available. The links above are examples.
qork checks whether a destination looks reachable before shortening it. If that check gets in your way, use --no-check to skip it.
More commands & options
| Command | Description |
|---|---|
qork <url> | Shorten a URL; prints the short link |
qork <url> --alias <name> | Use a custom short code |
qork <url> --json | Return JSON for scripts; use href for the full link |
qork <url> --no-check | Skip the destination reachability 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?
Pick your operating system. Every installer contains the same qork CLI.
Windows installers
All users · MSI
Installs for everyone on this PC. Requires administrator access.
All users · EXE
Setup wizard for everyone on this PC. Requires administrator access.
Just me · MSI
Installs for your account. No administrator access needed.
Just me · EXE
Setup wizard for your account. No administrator access needed.
macOS installers
Apple Silicon (M1+)
Unsigned .pkg — first run: right-click → Open.
Intel
Unsigned .pkg — first run: right-click → Open.
Linux installers
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>
Put it in a script.
Use the HTTP API directly. No API key or SDK required.
Both GET and POST hit https://qork.me/api/shorten and return the same JSON. Use href for the full short link. A custom alias goes in customAlias for POST, or alias for GET.
Response
{
"shortCode": "ka9m",
"shortUrl": "qork.me/ka9m",
"href": "https://qork.me/ka9m",
"longUrl": "https://example.com",
"isNew": true
}Request fields, limits, and error responses: qork.me/llms.txt(opens in a new tab)