Node.js (Fetch):
const res = await fetch("https://xnsz.tech/api/shorten", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ url, custom_alias: alias }),
});
const data = await res.json();
console.log(data.result.short_url);