Created
January 2, 2026 04:01
-
-
Save ONLym22/e653ff23946aa3e60df5ebbfc638579e to your computer and use it in GitHub Desktop.
Uploaded via ONLym Bot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * 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