Endpoints
Chat With Claude
Chat With Openai
Chat With QwenAI
Chat With Girl AI (For Only Sri Lanka 🇱🇰)
Chat With Sandarux AI
Download Anime Porn Images
Download Anime Porn Videoes
Download Anime Videos For Whatsapp
Get Movie Download Links
Download Tiktok Videos
Download Tiktok Videos
Download spotify Songs (url)
Download high quality Ringtones
Download Tiktok,Twitter,Fb,Ig,Yt
Download Any Videoes From Yt
Download Any Mp3 From Yt
Download Any Mp4 From Yt
Download Twitter Videoes
Download Twitter Videoes
Download fb Videoes
Download fb Videoes V2
Download instagram Videoes
Download instagram Videoes v2
Get Did You Know Facts
Get Motivation Facts
Search Sinhala subtitle data (query)
Search Lyrics
Download high quality Wallpapers
Download 4K quality Wallpapers
Download Wallpaper From wallpapercraft
Bing Search Api
find Any Telegram Group
Remove Background In image
Generate shorty.zone.id short links from any URL
Converts long URLs into short ShrinkMe links
Save any text to the text.genux.me and get a permanent shareable link.
Save any text to the paste.rs and get a permanent shareable link.
Get Playstore app details
Get Random Style Texts
Translate Any World Using Google Translate
Mix Any Emojies
Generate Qr Codes
Get a screenshot from any site.
Get Any Whatsapp Stickers
Make Text to image Sticker
Get Any Weather Details
Get Ip details
Get Random Tempmail
Get Inbox masseges
Convert Any currencies
Get Youtube summarize
Find IP From Any Site
Check Site Cloudflare
Get GitHub user details
Get Telegram Account Details
Get Tiktok Account Details
Generate Zonerai Ai Images
Generate AI Tts
Generate Miku AI Tts
Generate Flux Ai Images
Generate ai4chat Ai Images
Generate Writecream Ai Images
Generate aiLabs Ai Videoes
Make textcraft Images
Make Logo
Make Pornhub Logo
Raw JavaScript code snippet for the TTSAVE Tiktok video downloader. Integrate this into your Node.js project. **(Note: Requires `axios` and `cheerio` modules)**
const axios = require("axios"); const cheerio = require("cheerio"); const headers = { authority: "ttsave.app", accept: "application/json, text/plain, */*", origin: "https://ttsave.app", referer: "https://ttsave.app/en", "user-agent": "Postify/1.0.0", }; const ttsave = { submit: async function (url, referer) { const headerx = { ...headers, referer }; const data = { query: url, language_id: "1" }; return axios.post("https://ttsave.app/download", data, { headers: headerx }); }, parse: function ($) { const uniqueId = $("#unique-id").val(); const nickname = $("h2.font-extrabold").text(); const profilePic = $("img.rounded-full").attr("src"); const username = $("a.font-extrabold.text-blue-400").text(); const description = $("p.text-gray-600").text(); const dlink = { nowm: $("a.w-full.text-white.font-bold").first().attr("href"), wm: $("a.w-full.text-white.font-bold").eq(1).attr("href"), audio: $("a[type='audio']").attr("href"), profilePic: $("a[type='profile']").attr("href"), cover: $("a[type='cover']").attr("href"), }; const stats = { plays: "", likes: "", comments: "", shares: "" }; $(".flex.flex-row.items-center.justify-center").each((index, element) => { const $element = $(element); const svgPath = $element.find("svg path").attr("d"); const value = $element.find("span.text-gray-500").text().trim(); if (svgPath?.startsWith("M10 18a8 8 0 100-16")) stats.plays = value; else if (svgPath?.startsWith("M3.172 5.172a4 4 0 015.656")) stats.likes = value || "0"; else if (svgPath?.startsWith("M18 10c0 3.866-3.582")) stats.comments = value; else if (svgPath?.startsWith("M17.593 3.322c1.1.128")) stats.shares = value; }); const songTitle = $(".flex.flex-row.items-center.justify-center.gap-1.mt-5") .find("span.text-gray-500") .text() .trim(); const slides = $("a[type='slide']") .map((i, el) => ({ number: i + 1, url: $(el).attr("href"), })) .get(); return { uniqueId, nickname, profilePic, username, description, dlink, stats, songTitle, slides, }; }, video: async function (link) { try { const response = await this.submit(link, "https://ttsave.app/en"); const $ = cheerio.load(response.data); const result = this.parse($); if (result.slides && result.slides.length > 0) { return { type: "slide", ...result }; } return { type: "video", ...result, videoInfo: { nowm: result.dlink.nowm, wm: result.dlink.wm, }, }; } catch (error) { console.error(error); throw error; } }, };
Raw JavaScript function to upload a file buffer to **catbox.moe**. Integrate this into your Node.js project. **(Note: Requires `form-data` and `axios` modules)**
async function uploadToCatbox(buffer, filename) { try { const FormData = require('form-data'); const axios = require('axios'); const form = new FormData(); form.append('reqtype', 'fileupload'); form.append('fileToUpload', buffer, filename); const response = await axios.post('https://catbox.moe/user/api.php', form, { headers: form.getHeaders() }); return response.data; } catch (error) { console.error('Catbox upload error:', error); throw error; } }
Raw JavaScript function to upload a file buffer to **Uguu.se**. Integrates using `fetch` and `form-data`. **(Note: Requires `form-data` module)**
const FormData = require("form-data"); const form = new FormData(); form.append("files[]", buffer, { filename: "ocr.jpg" }); const uploadController = new AbortController(); const uploadTimeout = setTimeout(() => uploadController.abort(), 30000); // 30 seconds const uploadRes = await fetch("https://uguu.se/upload.php", { method: "POST", body: form, signal: uploadController.signal }).finally(() => clearTimeout(uploadTimeout)); if (!uploadRes.ok) { throw new Error('Failed to upload image to Uguu'); } const json = await uploadRes.json(); const imgUrl = json?.files?.[0]?.url; if (!imgUrl) { throw new Error('Failed to get URL from Uguu'); }
Raw JavaScript code snippet for the Fsaver net Fb video downloader. Integrate this into your Node.js project. **(Note: Requires `axios` and `cheerio` modules)**
const fsaver = { download: async (url) => { const fetchUrl = `https://fsaver.net/download/?url=${url}`; const headers = { "Upgrade-Insecure-Requests": "1", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36", "sec-ch-ua": '"Chromium";v="130", "Google Chrome";v="130", "Not?A_Brand";v="99"', "sec-ch-ua-mobile": "?0", "sec-ch-ua-platform": '"Windows"' }; try { const response = await axios.get(fetchUrl, { headers }); const html = response.data; const data = await fsaver.getData(html); return data; } catch (error) { return { success: false, message: error.message }; } }, getData: async (content) => { try { const baseUrl = 'https://fsaver.net'; const $ = cheerio.load(content); const videoSrc = $('.video__item').attr('src'); if (!videoSrc) throw new Error('Video not Found'); return { video: baseUrl + videoSrc }; } catch (error) { return { success: false, message: error.message }; } } };
Get Movie Details