把冗长 URL 变成指尖轻触即可抵达的极简符号——「快缩短网址」suo.run,正是为此而生。
无需注册、无需付费,一条长链瞬息化作优雅短码,短信、推文、海报、二维码,处处留白,处处精致。
优雅三步,即刻缩短
1. 打开 suo.run
2. 粘贴长链接
3. 轻点「生成」——短码即刻呈现,复制即用
不止简洁,更是开放
我们为开发者准备了零门槛 HTTP API,任何语言皆可呼吸般调用。
PHP 示例
$longUrl = 'https://your-very-long-link.com/with/many/parameters';
$api = 'https://suo.run/api?url=' . urlencode($longUrl);
echo file_get_contents($api); // 返回短码,如 https://suo.run/AbCdE

Python 示例
import requests
long_url = 'https://your-very-long-link.com/with/many/parameters'
short = requests.get('https://suo.run/api', params={'url': long_url}).text
print(short) # https://suo.run/AbCdE
Java 示例
String longUrl = "https://your-very-long-link.com/with/many/parameters";
String api = "https://suo.run/api?url=" + URLEncoder.encode(longUrl, "UTF-8");
String shortUrl = new Scanner(new URL(api).openStream(), "UTF-8").useDelimiter("\\A").next();
System.out.println(shortUrl); // https://suo.run/AbCdE

贴心提示
• 链接须以 http:// 或 https:// 开头
• 若含 & 等特殊字符,请先行 URL Encode
• 接口支持自定义后缀、访问统计、过期时间等高级参数,详见 suo.run/docs
当新浪 t.cn 悄然落幕,腾讯 url.cn 门槛高企,suo.run 仍为你敞开——让每一次分享,都轻盈如诗。