Skip to content

Instantly share code, notes, and snippets.

@ONLym22
Created January 1, 2026 11:11
Show Gist options
  • Select an option

  • Save ONLym22/de7cc35b687ac42afe7343344bd2b580 to your computer and use it in GitHub Desktop.

Select an option

Save ONLym22/de7cc35b687ac42afe7343344bd2b580 to your computer and use it in GitHub Desktop.
Uploaded via ONLym Bot
/*
* AIO Downloader
* Base Url: https://ssvid.net
* Creator: krsna_081
** https://whatsapp.com/channel/0029Vb72biW0QeasfexABN3H **
*/
import axios from "axios";
async function aio(url) {
const cf = await axios.post(
"https://api.nekolabs.web.id/tools/bypass/cf-turnstile",
{
url: "https://ssvid.net",
siteKey: "0x4AAAAAABtS0SWRydNIaIZb"
},
{ headers: { "Content-Type": "application/json" } }
);
if (!cf.data.result) return {
status: false,
error: "KlotPler Token kosong wok"
}
const res = await axios.post(
"https://ssvid.net/api/ajax/search?hl=id",
new URLSearchParams({
query: url,
cf_token: cf.data.result,
vt: "home"
}),
{
headers: {
"Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
"Origin": "https://ssvid.net",
"Referer": "https://ssvid.net/",
"User-Agent": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Mobile Safari/537.36"
}
}
);
return res.data;
}
aio("https://vt.tiktok.com/ZS5r5VPPC/")
.then((v) => console.log(JSON.stringify(v, null, 2)))
.catch((e) => console.log(JSON.stringify(e), null, 2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment