in_shorten
Vanilla Javascript (fetch)
url = "https://your.url.here/"; fetch(`https://s.wildla.in/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.wildla.in/register/{}".format(url)).text # short_url
PHP
$url = "https://your.url.here/"; $short_url = file_get_contents("https://s.wildla.in/register/".$url); // $short_url
wildla.in