Rey_APIs
Carousel image 1
Carousel image 2
Carousel image 3
Carousel image 4
Carousel image 5
Gurenge

Gurenge

LiSA

ANIME

API Explorer

6 categories available

AI

( 18 )

Google Gemini AI for text generation and conversations.

Live Tester

async function geminiai() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/gemini?apikey=YOUR_API_KEY");
  return await res.json();
}

geminiai().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/gemini?apikey=YOUR_API_KEY

AI Chat using Quillbot with conversation context.

Live Tester

async function quillbot() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/quillbot?apikey=YOUR_API_KEY");
  return await res.json();
}

quillbot().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/quillbot?apikey=YOUR_API_KEY

Universal chat using ch.at. Supports multiple models.

Live Tester

async function chat() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/ch-at?apikey=YOUR_API_KEY");
  return await res.json();
}

chat().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/ch-at?apikey=YOUR_API_KEY

Chat with DeepAI. Supports session for conversation continuity.

Live Tester

async function deepai() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/deepai?apikey=YOUR_API_KEY");
  return await res.json();
}

deepai().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/deepai?apikey=YOUR_API_KEY

Chat with GPT-4.1-nano via TalkAI. Supports model & temperature settings.

Live Tester

async function talkai() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/talkai?apikey=YOUR_API_KEY");
  return await res.json();
}

talkai().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/talkai?apikey=YOUR_API_KEY

Chat with Aiko AI. Session auto-reset after 30 minutes.

Live Tester

async function aiko() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/aiko?apikey=YOUR_API_KEY");
  return await res.json();
}

aiko().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/aiko?apikey=YOUR_API_KEY

GPT-OSS 20B & Codestral Latest.

Live Tester

async function llm7() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/llm7?apikey=YOUR_API_KEY");
  return await res.json();
}

llm7().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/llm7?apikey=YOUR_API_KEY

Code generation & analysis using Codestral Latest.

Live Tester

async function coder() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/coder?apikey=YOUR_API_KEY");
  return await res.json();
}

coder().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/coder?apikey=YOUR_API_KEY

AI-powered search engine. Returns answers, images, videos & more.

Live Tester

async function andisearch() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/andisearch?apikey=YOUR_API_KEY");
  return await res.json();
}

andisearch().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/andisearch?apikey=YOUR_API_KEY

⚠️ ERROR - Currently unavailable due to upstream issues.

Live Tester

async function chatgpt() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/chatgpt?apikey=YOUR_API_KEY");
  return await res.json();
}

chatgpt().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/chatgpt?apikey=YOUR_API_KEY

Convert text to speech using Gemini TTS. Returns MP3 audio.

Live Tester

async function geminitts() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/gemini-tts?apikey=YOUR_API_KEY");
  return await res.json();
}

geminitts().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/gemini-tts?apikey=YOUR_API_KEY

Chat with Jeeves AI. Fast & free responses.

Live Tester

async function jeeves() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/jeeves?apikey=YOUR_API_KEY");
  return await res.json();
}

jeeves().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/jeeves?apikey=YOUR_API_KEY

DeepSeek chat via Chat-Deep.AI. Supports conversation & multiple models.

Live Tester

async function chatdeep() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/chatdeep?apikey=YOUR_API_KEY");
  return await res.json();
}

chatdeep().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/chatdeep?apikey=YOUR_API_KEY

AI Chat with Blackbox (VscodeAgent). Supports system prompt & chat history.

Live Tester

async function blackbox() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/blackbox?apikey=YOUR_API_KEY");
  return await res.json();
}

blackbox().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/blackbox?apikey=YOUR_API_KEY

Microsoft Copilot AI chat. Supports multiple modes.

Live Tester

async function copilot() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/copilot?apikey=YOUR_API_KEY");
  return await res.json();
}

copilot().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/copilot?apikey=YOUR_API_KEY

DeepSeek V4 Flash via NoteGPT. Free & fast responses.

Live Tester

async function deepseeknote() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/deepseek-note?apikey=YOUR_API_KEY");
  return await res.json();
}

deepseeknote().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/deepseek-note?apikey=YOUR_API_KEY

AI Therapy Chatbot. Support system prompt & chat history.

Live Tester

async function feelbetter() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/feelbetter?apikey=YOUR_API_KEY");
  return await res.json();
}

feelbetter().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/feelbetter?apikey=YOUR_API_KEY

AI-powered search engine with answers, images & videos.

Live Tester

async function felo() {
  const res = await fetch("https://api.reyapi.my.id/api/ai/felo?apikey=YOUR_API_KEY");
  return await res.json();
}

felo().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/ai/felo?apikey=YOUR_API_KEY

TikTok

( 3 )

Download TikTok videos without watermark.

Live Tester

async function tiktokdownload() {
  const res = await fetch("https://api.reyapi.my.id/api/tiktok/download?apikey=YOUR_API_KEY");
  return await res.json();
}

tiktokdownload().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tiktok/download

Download multiple TikTok videos at once.

Live Tester

async function tiktokbatch() {
  const res = await fetch("https://api.reyapi.my.id/api/tiktok/batch?apikey=YOUR_API_KEY");
  return await res.json();
}

tiktokbatch().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tiktok/batch

Get TikTok user profile information.

Live Tester

async function tiktokuser() {
  const res = await fetch("https://api.reyapi.my.id/api/tiktok/user/{username}?apikey=YOUR_API_KEY");
  return await res.json();
}

tiktokuser().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tiktok/user/{username}?apikey=YOUR_API_KEY

Tools

( 10 )

Convert text to speech with 100+ voices and 8 emotions. Free 100 credits per request.

Live Tester

async function voiceai() {
  const res = await fetch("https://api.reyapi.my.id/api/tools/voice-ai?apikey=YOUR_API_KEY");
  return await res.json();
}

voiceai().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tools/voice-ai?apikey=YOUR_API_KEY

Generate AI images using MagicStudio. Auto upload to ImgBB.

Live Tester

async function generateimage() {
  const res = await fetch("https://api.reyapi.my.id/api/tools/generate-image/v1?apikey=YOUR_API_KEY");
  return await res.json();
}

generateimage().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tools/generate-image/v1?apikey=YOUR_API_KEY

Upload image file directly to ImgBB. Support expiration options.

Live Tester

async function imgbbupload() {
  const res = await fetch("https://api.reyapi.my.id/api/tools/imgbb?apikey=YOUR_API_KEY");
  return await res.json();
}

imgbbupload().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tools/imgbb

Compress or decompress text/Lua code using Brotli compression.

Live Tester

async function compress() {
  const res = await fetch("https://api.reyapi.my.id/api/compress?apikey=YOUR_API_KEY");
  return await res.json();
}

compress().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/compress

Encrypt or decrypt text with recursive encryption layers.

Live Tester

async function encrypt() {
  const res = await fetch("https://api.reyapi.my.id/api/encrypt?apikey=YOUR_API_KEY");
  return await res.json();
}

encrypt().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/encrypt

Obfuscate or deobfuscate numbers for privacy.

Live Tester

async function obfnum() {
  const res = await fetch("https://api.reyapi.my.id/api/tools/obfnum?apikey=YOUR_API_KEY");
  return await res.json();
}

obfnum().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tools/obfnum?apikey=YOUR_API_KEY

Calculate similarity between texts, find keywords, fuzzy search.

Live Tester

async function similarity() {
  const res = await fetch("https://api.reyapi.my.id/api/tools/similarity?apikey=YOUR_API_KEY");
  return await res.json();
}

similarity().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tools/similarity?apikey=YOUR_API_KEY

Bypass OUO.io / OUO.press shortlinks to get destination URL.

Live Tester

async function ouobypass() {
  const res = await fetch("https://api.reyapi.my.id/api/tools/ouo-bypass?apikey=YOUR_API_KEY");
  return await res.json();
}

ouobypass().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tools/ouo-bypass?apikey=YOUR_API_KEY

Generate Brat-style meme images. Supports animated & static.

Live Tester

async function brat() {
  const res = await fetch("https://api.reyapi.my.id/api/tools/brat?apikey=YOUR_API_KEY");
  return await res.json();
}

brat().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tools/brat?apikey=YOUR_API_KEY

Extract content from any article URL. Returns title, excerpt & full text.

Live Tester

async function parser() {
  const res = await fetch("https://api.reyapi.my.id/api/tools/parser?apikey=YOUR_API_KEY");
  return await res.json();
}

parser().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/tools/parser?apikey=YOUR_API_KEY

Downloader

( 1 )

Download videos/audio from 30+ platforms: TikTok, YouTube, Instagram, Spotify & more.

Live Tester

async function downloader() {
  const res = await fetch("https://api.reyapi.my.id/api/downloader/[...path]?apikey=YOUR_API_KEY");
  return await res.json();
}

downloader().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/downloader/[...path]?apikey=YOUR_API_KEY

Roblox

( 2 )

Generate Roblox Lua scripts with AI. Requires API key.

Live Tester

async function robloxscript() {
  const res = await fetch("https://api.reyapi.my.id/api/roblox/make-script?apikey=YOUR_API_KEY");
  return await res.json();
}

robloxscript().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/roblox/make-script?apikey=YOUR_API_KEY

Get all gamepasses owned by a Roblox user.

Live Tester

async function gamepass() {
  const res = await fetch("https://api.reyapi.my.id/api/getgamepass?apikey=YOUR_API_KEY");
  return await res.json();
}

gamepass().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/getgamepass?apikey=YOUR_API_KEY

Game

( 3 )

Get all active Evade game codes from the wiki.

Live Tester

async function evadecodes() {
  const res = await fetch("https://api.reyapi.my.id/api/evade-codes?apikey=YOUR_API_KEY");
  return await res.json();
}

evadecodes().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/evade-codes?apikey=YOUR_API_KEY

Calculate total XP needed to reach target level.

Live Tester

async function level() {
  const res = await fetch("https://api.reyapi.my.id/api/level?apikey=YOUR_API_KEY");
  return await res.json();
}

level().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/level?apikey=YOUR_API_KEY

Convert streak count to time format (1 streak = 3m30s).

Live Tester

async function streak() {
  const res = await fetch("https://api.reyapi.my.id/api/streak?apikey=YOUR_API_KEY");
  return await res.json();
}

streak().then(data => {
  console.log(JSON.stringify(data, null, 2));
});
https://api.reyapi.my.id/api/streak?apikey=YOUR_API_KEY