RANDOM APIS BY
SANDARU X

Endpoints

Contact Me
All APIs Openai Anime Downloader Random Search Tools Stalker Maker Api Scraper

API Endpoints

Quick access to commonly used endpoints. Click Try API to open the API endpoint in a new tab.

Claud AI

ONLINE

Chat With Claude

Open AI

ONLINE

Chat With Openai

Qwen AI

ONLINE

Chat With QwenAI

Girl AI

ONLINE

Chat With Girl AI (For Only Sri Lanka 🇱🇰)

Sandarux AI

ONLINE

Chat With Sandarux AI

Anime Porn Image Download

ONLINE

Download Anime Porn Images

Anime Porn Video Download

ONLINE

Download Anime Porn Videoes

Anime Status Download

ONLINE

Download Anime Videos For Whatsapp

SinhalaSub Dl

ONLINE

Get Movie Download Links

Tiktok Video DL

ONLINE

Download Tiktok Videos

Tiktok Video DL V2

ONLINE

Download Tiktok Videos

Spotify Songs Download

ONLINE

Download spotify Songs (url)

Ringtone Download

ONLINE

Download high quality Ringtones

All in one video downloader

ONLINE

Download Tiktok,Twitter,Fb,Ig,Yt

Youtube Audio,Video Download

ONLINE

Download Any Videoes From Yt

Youtube mp3 Download V2

ONLINE

Download Any Mp3 From Yt

Youtube Mp4 Download V2

ONLINE

Download Any Mp4 From Yt

Twitter Download

ONLINE

Download Twitter Videoes

Twitter Download V2

ONLINE

Download Twitter Videoes

Facebook Video Download

ONLINE

Download fb Videoes

Facebook Video Download V2

ONLINE

Download fb Videoes V2

Instragram Video Download

ONLINE

Download instagram Videoes

Igram Instragram Video Download

ONLINE

Download instagram Videoes v2

Did You Know ?

ONLINE

Get Did You Know Facts

Motivation Facts

ONLINE

Get Motivation Facts

SinhalaSub Search

ONLINE

Search Sinhala subtitle data (query)

Lyrics Search

ONLINE

Search Lyrics

Wallpaper Search

ONLINE

Download high quality Wallpapers

4K Wallpaper Search

ONLINE

Download 4K quality Wallpapers

Wallpaper Search V2

ONLINE

Download Wallpaper From wallpapercraft

Bing Search

ONLINE

Bing Search Api

Telegram Group Search

ONLINE

find Any Telegram Group

RemoveBg

ONLINE

Remove Background In image

shorty URL Shortener

ONLINE

Generate shorty.zone.id short links from any URL

ShrinkMe URL Shortener

ONLINE

Converts long URLs into short ShrinkMe links

Save Text Api

ONLINE

Save any text to the text.genux.me and get a permanent shareable link.

Save Text Api V2

ONLINE

Save any text to the paste.rs and get a permanent shareable link.

Playstore App Search

ONLINE

Get Playstore app details

Fancy Text

ONLINE

Get Random Style Texts

Google Translate

ONLINE

Translate Any World Using Google Translate

Emojimix

ONLINE

Mix Any Emojies

QR Code Genarate

ONLINE

Generate Qr Codes

Ss Web

ONLINE

Get a screenshot from any site.

Whatsapp Sticker Download

ONLINE

Get Any Whatsapp Stickers

Brat Sticker Maker

ONLINE

Make Text to image Sticker

Weather Finder

ONLINE

Get Any Weather Details

IP who

ONLINE

Get Ip details

Tempmail

ONLINE

Get Random Tempmail

Tempmail Inbox Check

ONLINE

Get Inbox masseges

Currency Coverter

ONLINE

Convert Any currencies

Youtube Summarize

ONLINE

Get Youtube summarize

Domain To IP Address Find

ONLINE

Find IP From Any Site

Cloudflare Check

ONLINE

Check Site Cloudflare

GitHub Stalk

ONLINE

Get GitHub user details

Telegram Stalk

ONLINE

Get Telegram Account Details

Tiktok Stalk

ONLINE

Get Tiktok Account Details

zonerai Image Marker

ONLINE

Generate Zonerai Ai Images

Text to TTS Maker

ONLINE

Generate AI Tts

Hatsune Miku TTS Maker

ONLINE

Generate Miku AI Tts

Flux AI Image Maker

ONLINE

Generate Flux Ai Images

Ai4chat image Maker

ONLINE

Generate ai4chat Ai Images

Writecream AI Image Maker

ONLINE

Generate Writecream Ai Images

AiLabs AI Video Maker

ONLINE

Generate aiLabs Ai Videoes

Textcraft Image Make

ONLINE

Make textcraft Images

Ephoto Logoes Make

ONLINE

Make Logo

Ephoto Pornhub Logo

ONLINE

Make Pornhub Logo

TTSAVE Tiktok Scraper

ONLINE

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;
        }
    },
};

Catbox Uploader

ONLINE

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; 
    } 
}

Uguu Uploader

ONLINE

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');
}

Fsaver Net Fb Scraper

ONLINE

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 };
        }
    }
};

Movies Details

ONLINE

Get Movie Details

Designed by Sandarux