A private, multi-user URL shortener built for teams and developers. Shorten links via REST API, track clicks in real time, and set expiration dates — all under your domain.
Generate clean, memorable short codes under your own domain. Custom codes supported via the API.
Track total clicks per link in real time. Know exactly how your links are performing without any third-party tools.
Set an expiry date on any link. Expired links return a clear 410 Gone — no silent redirects, no surprises.
Integrate link creation into any workflow. Authenticated with a per-user API key passed as a request header.
Every feature is accessible via a clean HTTP API. Authenticate with your personal key and start creating links from any language or tool.
# Create a short link curl -X POST https://vtt-short.cc/api/links \ -H "X-API-Key: your_api_key" \ -H "Content-Type: application/json" \ -d '{"long_url":"https://example.com"}' # Response { "short_code": "xK9mP", "short_url": "https://vtt-short.cc/xK9mP", "click_count": 0, "expires_at": null }
Send an email to support@vtt-short.cc with your name and intended use. We'll create an account and send you an API key.
Authenticate any request with your key using the X-API-Key header. Start creating and managing links immediately.
Use the stats endpoint to fetch click counts for any of your links. Your data stays isolated from other users.
Access is by invitation. Write to us and we'll set up your account — usually within one business day.