Shorten any URL using 7 different providers. Get multiple short links at once or pick your favorite service.
Fast, reliable shortener with stats tracking
/api/tools/shorten?url=YOUR_URL&provider=isgd
Sister service to is.gd with permanent links
/api/tools/shorten?url=YOUR_URL&provider=vgd
The original URL shortener since 2002
/api/tools/shorten?url=YOUR_URL&provider=tinyurl
Clean and simple URL shortening
/api/tools/shorten?url=YOUR_URL&provider=cleanuri
Fast Russian URL shortener by Yandex
/api/tools/shorten?url=YOUR_URL&provider=clckru
Ultra-simple, minimal URL shortener
/api/tools/shorten?url=YOUR_URL&provider=dagd
Open-source shortener with analytics support
/api/tools/shorten?url=YOUR_URL&provider=spoome
// Shorten URL with all 7 providers at once
fetch("/api/tools/shorten?url=https://example.com/long-path")
.then(res => res.json())
.then(data => {
console.log(data.results);
// [
// { id: "isgd", name: "is.gd", shortUrl: "https://is.gd/abc" },
// { id: "vgd", name: "v.gd", shortUrl: "https://v.gd/xyz" },
// { id: "tinyurl", name: "TinyURL", shortUrl: "https://tinyurl.com/..." },
// { id: "cleanuri", name: "CleanURI", shortUrl: "https://cleanuri.com/..." },
// { id: "clckru", name: "clck.ru", shortUrl: "https://clck.ru/..." },
// { id: "dagd", name: "da.gd", shortUrl: "https://da.gd/..." },
// { id: "spoome", name: "spoo.me", shortUrl: "https://spoo.me/..." }
// ]
});