sJS1024 - Fast url shortener designed for your applications
shorten
Features
unlimited links allowed
minimalistic API
links are shared forever
fast
Vanilla Javascript (fetch)
url = "https://your.url.here/"; fetch(`https://s.js1024.fun/register/${url}`) .then(response=>{ response.text().then(shortUrl=>{ // shortUrl }) })
Python (requests library)
import requests url = "https://your.url.here/" short_url = requests.get("https://s.js1024.fun/register/{}".format(url)).text # short_url
PHP
$url = "https://your.url.here/"; $short_url = file_get_contents("https://s.js1024.fun/register/".$url); // $short_url