API Status: Operational

RUBISH API Hub
Developer Documentation

100+ powerful REST APIs for developers — AI chat, image generation, social media tools, media downloaders, and utility services. Fast, reliable, and easy to integrate.

100+API Endpoints
15+Categories
24/7Uptime
FreeAPI Key

Authentication & Base URL

All /rubish/ endpoints require an API key passed as a query parameter:

https://rubish.online/rubish/{endpoint}?apikey=YOUR_KEY&param=value

No-auth endpoints: /api/fbpfp /download /x/create /x/raw/:id

Contact MR RUBISH on Facebook or WhatsApp to get your free API key.

Quick Reference — All Endpoints

100+ APIs
Endpoint
Description
Auth
/rubish/groq/chat
Groq multi-model AI chat (Llama, Gemma, Mistral…)
KEY
/rubish/simma
Simma AI chatbot (teach/learn)
KEY
/rubish/baby2
Baby2 chatbot
KEY
/rubish/describe
AI image description
KEY
/rubish/prompt
AI prompt generator
KEY
/rubish/flux
Flux text-to-image generation
KEY
/rubish/fluxpro
Flux Pro high-quality image gen
KEY
/rubish/sdxl
Stable Diffusion XL image gen
KEY
/rubish/dalle
DALL-E image generation
KEY
/rubish/imagine
Imagine AI image gen
KEY
/rubish/aigen
General AI image generator
KEY
/rubish/ocr
OCR text extraction from image
KEY
/rubish/ocr2
OCR v2 enhanced accuracy
KEY
/rubish/removebg
Remove image background
KEY
/rubish/upscale
Upscale image resolution
KEY
/rubish/faceswap
AI face swap
KEY
/rubish/filter
Apply image filters
KEY
/rubish/emojimix
Mix two emojis into one image
KEY
/rubish/catsay
Cat-say meme generator
KEY
/rubish/zombie
Zombie face effect
KEY
/rubish/vector
Vectorize image (SVG)
KEY
/rubish/fbcoverv1…v11
Facebook cover photo maker (11 styles)
KEY
/rubish/insta-stalk
Instagram profile info
KEY
/rubish/tikstalk
TikTok profile info
KEY
/rubish/tgstalk
Telegram user/channel info
KEY
/rubish/gitstalk
GitHub profile info
KEY
/api/fbpfp
Facebook profile picture
FREE
/rubish/eyecon
Eyecon profile picture lookup
KEY
/rubish/mediadl
Universal media downloader
KEY
/rubish/tiktok-sr
TikTok search & download
KEY
/rubish/yt-search
YouTube video search
KEY
/rubish/yt-download
YouTube video download
KEY
/rubish/xnxx/search
XNXX search (18+)
KEY
/rubish/xnxx/download
XNXX download (18+)
KEY
/rubish/translate
Translate text between languages
KEY
/rubish/weather
Current weather by city
KEY
/rubish/wiki
Wikipedia search & summary
KEY
/rubish/screenshot
Website screenshot
KEY
/rubish/ipinfo
IP geolocation info
KEY
/rubish/countryinfo
Country details & info
KEY
/rubish/binary-text
Binary to text converter
KEY
/rubish/text-binary
Text to binary converter
KEY
/rubish/love-calculator
Love percentage calculator
KEY
/rubish/agecalculator
Age calculator from DOB
KEY
/rubish/namaj
Islamic prayer (namaj) times
KEY
/rubish/iftar
Ramadan iftar/sehri times
KEY
/rubish/pdf
URL to PDF converter
KEY
/rubish/font
Stylish font text generator
KEY
/rubish/nekobin
Nekobin text paste
KEY
/rubish/get-2fa
Two-factor auth code generator
KEY
/rubish/hax
Hax text effect
KEY
/rubish/pinterest
Pinterest image search
KEY
/rubish/pinterest/search
Pinterest advanced search
KEY
/rubish/unsplash
Unsplash free stock photos
KEY
/rubish/pixels
Pixels HD images
KEY
/rubish/google-img
Google image search
KEY
/rubish/gif
GIF search (Tenor/Giphy)
KEY
/rubish/bdnews
Bangladesh news feed
KEY
/rubish/quiz-api
Random quiz questions
KEY
/rubish/animequiz
Anime character quiz
KEY
/rubish/caption
Random captions
KEY
/x/create
Create text paste (RPaste)
FREE
/x/raw/:id
Get raw paste content
FREE
/rubish/imgbb-up
Upload image to ImgBB
KEY

AI & Chat

7 APIs
GET /rubish/groq/chat

Multi-model AI chat powered by Groq — supports Llama 3, Gemma 2, Mistral, Qwen, and more. Ultra-fast inference with conversation memory support.

ParameterTypeRequiredDescription
qstringRequiredYour message / question
modelstringOptionalModel ID (default: llama-3.3-70b-versatile)
idstringOptionalConversation ID for memory/context
systemstringOptionalSystem prompt / persona
presetstringOptionalPreset name (see /groq/presets)
apikeystringRequiredYour RUBISH API key
GET https://rubish.online/rubish/groq/chat?q=Hello+world&model=llama-3.3-70b-versatile&apikey=YOUR_KEY
{ "reply": "Hello! How can I assist you today?", "model": "llama-3.3-70b-versatile", "id": "conv_abc123", "tokens": 15 }
Use /rubish/groq/models to list all available models. Use /rubish/groq/presets for preset list.
GET /rubish/groq/models

Returns a list of all available Groq AI models you can use with the chat endpoint.

GET https://rubish.online/rubish/groq/models?apikey=YOUR_KEY
GET /rubish/simma

Simma AI chatbot — a smart, teachable chatbot. Supports chat, teach, edit, remove, and list commands. Used heavily in Facebook Messenger bots.

ParameterTypeRequiredDescription
textstringOptionalMessage to send to chatbot
senderIDstringOptionalUser's sender ID for personalization
teachstringOptionalTeach a new trigger phrase
replystringOptionalReply for the taught trigger
liststringOptionalList learned responses
apikeystringRequiredYour API key
GET https://rubish.online/rubish/simma?text=Hello&senderID=12345&apikey=YOUR_KEY
GET https://rubish.online/rubish/simma?teach=hi&reply=Hello+there!&senderID=12345&apikey=YOUR_KEY
GET /rubish/describe

AI-powered image description — pass an image URL and get a detailed text description of what the image contains.

ParameterTypeRequiredDescription
urlstringRequiredImage URL to describe
apikeystringRequiredYour API key
GET https://rubish.online/rubish/describe?url=https://example.com/image.jpg&apikey=YOUR_KEY
GET /rubish/prompt

AI prompt generator — generate creative, detailed prompts for image generation models from a simple description.

ParameterTypeRequiredDescription
textstringRequiredShort description to expand into a prompt
apikeystringRequiredYour API key
GET https://rubish.online/rubish/prompt?text=a+girl+in+forest&apikey=YOUR_KEY

Image Generation

8 APIs
GET /rubish/flux

Flux text-to-image generation. Fast, high-quality AI images from text prompts.

ParameterTypeRequiredDescription
promptstringRequiredText prompt to generate image
apikeystringRequiredYour API key
GET https://rubish.online/rubish/flux?prompt=a+beautiful+sunset+over+ocean&apikey=YOUR_KEY
Returns image URL or binary image data. Try /rubish/fluxpro for even higher quality.
GET /rubish/fluxpro

Flux Pro — premium quality text-to-image generation with enhanced detail and realism.

ParameterTypeRequiredDescription
promptstringRequiredDetailed text prompt
apikeystringRequiredYour API key
GET https://rubish.online/rubish/fluxpro?prompt=cinematic+photo+of+a+cyberpunk+city&apikey=YOUR_KEY
GET /rubish/sdxl

Stable Diffusion XL — powerful open-source image generation model with detailed artistic results.

ParameterTypeRequiredDescription
promptstringRequiredImage generation prompt
negativestringOptionalNegative prompt (what to avoid)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/sdxl?prompt=fantasy+dragon+in+mountains&apikey=YOUR_KEY
GET /rubish/dalle

DALL-E powered image generation — OpenAI's creative image synthesis model.

ParameterTypeRequiredDescription
promptstringRequiredText prompt
apikeystringRequiredYour API key
GET https://rubish.online/rubish/dalle?prompt=a+cat+astronaut+on+the+moon&apikey=YOUR_KEY
GET /rubish/imagine

Imagine AI — fast and creative image generation from text prompts.

ParameterTypeRequiredDescription
promptstringRequiredImage prompt
apikeystringRequiredYour API key
GET https://rubish.online/rubish/imagine?prompt=anime+girl+in+tokyo&apikey=YOUR_KEY
GET /rubish/aigen

General AI image generator — versatile image creation for any style or subject.

ParameterTypeRequiredDescription
promptstringRequiredImage prompt
apikeystringRequiredYour API key
GET https://rubish.online/rubish/aigen?prompt=futuristic+city+at+night&apikey=YOUR_KEY

Image Processing Tools

11 APIs
GET /rubish/ocr

Optical Character Recognition — extract text from any image URL. Supports printed and handwritten text.

ParameterTypeRequiredDescription
urlstringRequiredImage URL
apikeystringRequiredYour API key
GET https://rubish.online/rubish/ocr?url=https://example.com/text-image.jpg&apikey=YOUR_KEY
GET /rubish/ocr2

OCR v2 — enhanced accuracy OCR with better support for Bengali and other languages.

ParameterTypeRequiredDescription
urlstringRequiredImage URL
langstringOptionalLanguage code (e.g. ben, eng)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/ocr2?url=https://example.com/image.jpg&lang=ben&apikey=YOUR_KEY
GET /rubish/removebg

AI-powered background removal — returns a transparent PNG with the background removed.

ParameterTypeRequiredDescription
urlstringRequiredImage URL
apikeystringRequiredYour API key
GET https://rubish.online/rubish/removebg?url=https://example.com/photo.jpg&apikey=YOUR_KEY
GET /rubish/upscale

AI image upscaler — enhance image resolution up to 4x using super-resolution models.

ParameterTypeRequiredDescription
urlstringRequiredImage URL to upscale
scalenumberOptionalScale factor: 2 or 4 (default: 2)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/upscale?url=https://example.com/low-res.jpg&scale=4&apikey=YOUR_KEY
GET /rubish/faceswap

AI face swap — swap faces between two images with realistic results.

ParameterTypeRequiredDescription
sourcestringRequiredSource face image URL
targetstringRequiredTarget image URL (face to replace)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/faceswap?source=https://example.com/face.jpg&target=https://example.com/body.jpg&apikey=YOUR_KEY
GET /rubish/filter

Apply artistic filters to images — grayscale, vintage, oil painting, cartoon, and more.

ParameterTypeRequiredDescription
urlstringRequiredImage URL
filterstringRequiredFilter name (grayscale, vintage, etc.)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/filter?url=https://example.com/img.jpg&filter=grayscale&apikey=YOUR_KEY
GET /rubish/emojimix

Merge two emojis together into a unique combined emoji image using Google's Emoji Kitchen.

ParameterTypeRequiredDescription
emoji1stringRequiredFirst emoji (e.g. 😀)
emoji2stringRequiredSecond emoji (e.g. 😂)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/emojimix?emoji1=😀&emoji2=😂&apikey=YOUR_KEY
GET /rubish/catsay

Generate a funny "cat say" meme image with your custom text.

ParameterTypeRequiredDescription
textstringRequiredText for the cat to say
apikeystringRequiredYour API key
GET https://rubish.online/rubish/catsay?text=Hello+World&apikey=YOUR_KEY
GET /rubish/zombie

Apply a zombie face transformation effect to any portrait image.

ParameterTypeRequiredDescription
urlstringRequiredPortrait image URL
apikeystringRequiredYour API key
GET https://rubish.online/rubish/zombie?url=https://example.com/face.jpg&apikey=YOUR_KEY
GET /rubish/vector

Vectorize raster images — convert PNG/JPG to clean SVG vector format.

ParameterTypeRequiredDescription
urlstringRequiredImage URL to vectorize
apikeystringRequiredYour API key
GET https://rubish.online/rubish/vector?url=https://example.com/logo.png&apikey=YOUR_KEY
GET /rubish/fbcoverv1 … /rubish/fbcoverv11

Facebook cover photo maker — 11 unique stylish templates. Replace v1 with v1–v11 to pick a style.

ParameterTypeRequiredDescription
namestringOptionalName text on cover
avatarstringOptionalProfile picture URL
apikeystringRequiredYour API key
GET https://rubish.online/rubish/fbcoverv3?name=Rubish&avatar=https://example.com/pic.jpg&apikey=YOUR_KEY

Social Media Stalkers

7 APIs
GET /rubish/insta-stalk

Instagram profile stalker — get followers, following, bio, profile picture, and post count from any public Instagram profile.

ParameterTypeRequiredDescription
usernamestringRequiredInstagram username (without @)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/insta-stalk?username=cristiano&apikey=YOUR_KEY
GET /rubish/tikstalk

TikTok profile info — followers, likes, bio, and avatar from any TikTok username.

ParameterTypeRequiredDescription
usernamestringRequiredTikTok username (without @)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/tikstalk?username=charlidamelio&apikey=YOUR_KEY
GET /rubish/tgstalk

Telegram user/channel info — name, bio, member count, and profile photo.

ParameterTypeRequiredDescription
usernamestringRequiredTelegram username (without @)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/tgstalk?username=durov&apikey=YOUR_KEY
GET /rubish/gitstalk

GitHub profile stalker — repos, followers, stars, bio, and account details.

ParameterTypeRequiredDescription
usernamestringRequiredGitHub username
apikeystringRequiredYour API key
GET https://rubish.online/rubish/gitstalk?username=torvalds&apikey=YOUR_KEY
GET /api/fbpfp

Get Facebook profile picture by UID. No API key required.

ParameterTypeRequiredDescription
uidstringRequiredFacebook user UID
GET https://rubish.online/api/fbpfp?uid=100000000000000
GET /rubish/eyecon

Eyecon profile picture lookup by phone number.

ParameterTypeRequiredDescription
numberstringRequiredPhone number with country code
apikeystringRequiredYour API key
GET https://rubish.online/rubish/eyecon?number=8801400976112&apikey=YOUR_KEY

Media Downloaders

6 APIs
GET /rubish/mediadl

Universal media downloader — supports TikTok, Instagram, Facebook, Twitter, YouTube and 50+ platforms.

ParameterTypeRequiredDescription
urlstringRequiredMedia URL to download
apikeystringRequiredYour API key
GET https://rubish.online/rubish/mediadl?url=https://www.tiktok.com/@user/video/123&apikey=YOUR_KEY
GET /rubish/tiktok-sr

TikTok search and download — search videos by keyword and get download links without watermark.

ParameterTypeRequiredDescription
qstringRequiredSearch keyword
apikeystringRequiredYour API key
GET https://rubish.online/rubish/tiktok-sr?q=funny+cats&apikey=YOUR_KEY
GET /rubish/yt-search  &  /rubish/yt-download

YouTube search and download — search videos and get MP4/MP3 download links.

ParameterTypeRequiredDescription
qstringRequiredSearch query
apikeystringRequiredYour API key
ParameterTypeRequiredDescription
urlstringRequiredYouTube video URL
typestringOptionalmp4 or mp3 (default: mp4)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/yt-search?q=shape+of+you&apikey=YOUR_KEY GET https://rubish.online/rubish/yt-download?url=https://youtu.be/VIDEO_ID&type=mp3&apikey=YOUR_KEY
GET /rubish/xnxx/search  &  /rubish/xnxx/download
18+ only. Access is logged. Must be 18+ to use this endpoint.

Search and download XNXX content. Both endpoints require API key.

ParameterTypeRequiredDescription
q / urlstringRequiredSearch query or video URL
apikeystringRequiredYour API key
GET https://rubish.online/rubish/xnxx/search?q=keyword&apikey=YOUR_KEY

Utilities

18 APIs
GET /rubish/translate

Translate text between 100+ languages using Google Translate engine.

ParameterTypeRequiredDescription
textstringRequiredText to translate
langstringRequiredTarget language code (e.g. en, bn, fr)
fromstringOptionalSource language (default: auto)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/translate?text=Hello&lang=bn&apikey=YOUR_KEY
GET /rubish/weather

Current weather data by city name — temperature, humidity, wind, and forecast.

ParameterTypeRequiredDescription
citystringRequiredCity name (e.g. Dhaka)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/weather?city=Dhaka&apikey=YOUR_KEY
GET /rubish/wiki

Wikipedia search — get article summary, title, and thumbnail image.

ParameterTypeRequiredDescription
qstringRequiredSearch query
langstringOptionalLanguage code (default: en)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/wiki?q=Bangladesh&apikey=YOUR_KEY
GET /rubish/screenshot

Take a full screenshot of any website URL and return as image.

ParameterTypeRequiredDescription
urlstringRequiredWebsite URL to screenshot
apikeystringRequiredYour API key
GET https://rubish.online/rubish/screenshot?url=https://rubish.online&apikey=YOUR_KEY
GET /rubish/ipinfo

IP geolocation — get country, city, ISP, timezone, and coordinates for any IP address.

ParameterTypeRequiredDescription
ipstringOptionalIP address (default: caller's IP)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/ipinfo?ip=8.8.8.8&apikey=YOUR_KEY
GET /rubish/countryinfo

Country details — capital, population, currency, languages, flag, and more.

ParameterTypeRequiredDescription
countrystringRequiredCountry name or code
apikeystringRequiredYour API key
GET https://rubish.online/rubish/countryinfo?country=Bangladesh&apikey=YOUR_KEY
GET /rubish/binary-text  &  /rubish/text-binary

Binary ↔ Text converter. Convert text to binary or binary to readable text.

ParameterTypeRequiredDescription
textstringRequiredInput text or binary string
apikeystringRequiredYour API key
GET https://rubish.online/rubish/text-binary?text=Hello&apikey=YOUR_KEY GET https://rubish.online/rubish/binary-text?text=01001000+01100101+01101100+01101100+01101111&apikey=YOUR_KEY
GET /rubish/love-calculator

Calculate love percentage between two names — returns a fun compatibility score.

ParameterTypeRequiredDescription
fnamestringRequiredFirst person's name
snamestringRequiredSecond person's name
apikeystringRequiredYour API key
GET https://rubish.online/rubish/love-calculator?fname=Rubish&sname=Simma&apikey=YOUR_KEY
GET /rubish/agecalculator

Age calculator — calculate exact age in years, months, days from a date of birth.

ParameterTypeRequiredDescription
datestringRequiredDate of birth (YYYY-MM-DD)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/agecalculator?date=2000-06-15&apikey=YOUR_KEY
GET /rubish/namaj

Islamic prayer (namaj) times for any city — Fajr, Dhuhr, Asr, Maghrib, Isha.

ParameterTypeRequiredDescription
citystringRequiredCity name
countrystringOptionalCountry name
apikeystringRequiredYour API key
GET https://rubish.online/rubish/namaj?city=Dhaka&country=Bangladesh&apikey=YOUR_KEY
GET /rubish/iftar

Ramadan iftar and sehri (suhur) times by city.

ParameterTypeRequiredDescription
citystringRequiredCity name
apikeystringRequiredYour API key
GET https://rubish.online/rubish/iftar?city=Dhaka&apikey=YOUR_KEY
GET /rubish/get-2fa

Two-Factor Authentication code generator — generate TOTP codes from a 2FA secret key.

ParameterTypeRequiredDescription
secretstringRequired2FA secret key (base32)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/get-2fa?secret=JBSWY3DPEHPK3PXP&apikey=YOUR_KEY
GET /rubish/font

Stylish font text generator — convert plain text into decorative/fancy unicode styles.

ParameterTypeRequiredDescription
textstringRequiredInput text to style
stylenumberOptionalFont style number (1-50+)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/font?text=Rubish&style=5&apikey=YOUR_KEY
GET /rubish/nekobin

Paste text to Nekobin — returns a shareable URL for the pasted content.

ParameterTypeRequiredDescription
textstringRequiredText content to paste
apikeystringRequiredYour API key
GET https://rubish.online/rubish/nekobin?text=console.log('Hello')&apikey=YOUR_KEY
GET /rubish/hax

Hax text effect — returns a stylized/hacker-looking version of the input text.

ParameterTypeRequiredDescription
textstringRequiredInput text
apikeystringRequiredYour API key
GET https://rubish.online/rubish/hax?text=Rubish&apikey=YOUR_KEY

Image Search & News

7 APIs
GET /rubish/pinterest  |  /rubish/pinterest/search  |  /rubish/pinterest/download

Pinterest image search — search, download images, or get a profile info. Three separate endpoints.

ParameterTypeRequiredDescription
q / url / usernamestringRequiredSearch query / image URL / username
apikeystringRequiredYour API key
GET https://rubish.online/rubish/pinterest?q=anime+wallpaper&apikey=YOUR_KEY GET https://rubish.online/rubish/pinterest/search?q=nature&apikey=YOUR_KEY
GET /rubish/unsplash

Unsplash free stock photos — search and get high-resolution free images.

ParameterTypeRequiredDescription
qstringRequiredSearch query
apikeystringRequiredYour API key
GET https://rubish.online/rubish/unsplash?q=mountains&apikey=YOUR_KEY
GET /rubish/pixels

Pixels HD images — curated high-definition photography search.

ParameterTypeRequiredDescription
qstringRequiredSearch keyword
apikeystringRequiredYour API key
GET https://rubish.online/rubish/pixels?q=ocean&apikey=YOUR_KEY
GET /rubish/google-img

Google image search — returns image URLs from Google Images for any keyword.

ParameterTypeRequiredDescription
qstringRequiredSearch query
apikeystringRequiredYour API key
GET https://rubish.online/rubish/google-img?q=rubish+online&apikey=YOUR_KEY
GET /rubish/gif

GIF search — search and return animated GIFs from Tenor/Giphy.

ParameterTypeRequiredDescription
qstringRequiredGIF search keyword
apikeystringRequiredYour API key
GET https://rubish.online/rubish/gif?q=happy+dance&apikey=YOUR_KEY
GET /rubish/bdnews

Bangladesh news feed — latest headlines from major Bangladeshi news sources.

ParameterTypeRequiredDescription
apikeystringRequiredYour API key
GET https://rubish.online/rubish/bdnews?apikey=YOUR_KEY

Entertainment

3 APIs
GET /rubish/quiz-api

Random quiz questions — returns question, multiple choice options and correct answer.

ParameterTypeRequiredDescription
categorystringOptionalQuiz category (science, history, etc.)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/quiz-api?apikey=YOUR_KEY
GET /rubish/animequiz

Anime character quiz — returns an anime character image with multiple-choice name options.

ParameterTypeRequiredDescription
apikeystringRequiredYour API key
GET https://rubish.online/rubish/animequiz?apikey=YOUR_KEY
GET /rubish/caption

Random captions generator — funny, motivational, love, and more caption categories.

ParameterTypeRequiredDescription
typestringOptionalCaption type (funny, love, sad, etc.)
apikeystringRequiredYour API key
GET https://rubish.online/rubish/caption?type=funny&apikey=YOUR_KEY

Paste Service (RPaste)

4 endpoints — No auth required
POST /x/create  |  GET /x/raw/:id  |  GET /x/delete/:id  |  GET /x/list

RPaste — RUBISH's own paste service. Create, read, list, and delete text pastes. Rate-limited. No API key needed.

POST https://rubish.online/x/create Content-Type: application/json { "title": "My Code", "content": "console.log('Hello World');", "language": "javascript" }
GET https://rubish.online/x/raw/PASTE_ID
GET https://rubish.online/x/delete/PASTE_ID
Visit rubish.online/paste for the web interface.

Image Upload

2 APIs
GET /rubish/imgbb-up

Upload image URL to ImgBB hosting and get a permanent shareable link.

ParameterTypeRequiredDescription
urlstringRequiredImage URL to upload
apikeystringRequiredYour API key
GET https://rubish.online/rubish/imgbb-up?url=https://example.com/image.jpg&apikey=YOUR_KEY

RUBISH API Hub — 100+ Free REST APIs by MR RUBISH

RUBISH API Hub is a free public API platform built and maintained by MR RUBISH (rubish69) — a Bangladesh-based bot developer, API engineer, and cybersecurity expert. The hub provides 100+ REST API endpoints covering AI chat, image generation, image processing, social media stalkers, video downloaders, utilities, and more. All APIs are accessible via a simple GET request with an API key — no complex setup required.

API Categories

  • AI Chat APIs — Groq LLaMA, Gemini (cookie-based & official), AI conversation with memory, multiple system presets (coding, translator, teacher, doctor, lawyer, RUBISH AI).
  • Image Generation APIs — Flux AI, SDXL, DALL·E style, Imagine, text-to-image with multiple models, aspect ratio selection.
  • Image Processing APIs — Remove background, face swap, image upscale, OCR (text extraction), image filter, emoji mix, zombie effect, vector art, cat say.
  • Social Stalker APIs — Instagram stalker, TikTok stalker, Telegram stalker, GitHub stalker, Facebook profile picture downloader, Eyecon lookup.
  • Video Downloader APIs — TikTok, YouTube, Facebook, Instagram, Twitter/X, Pinterest, and 20+ platforms via RUBISH media downloader.
  • Cover Generator APIs — Custom Facebook cover cards with avatar and profile stats (v1 to v11).
  • Utility APIs — Weather, Wikipedia, IP info, country info, translation, screenshot, PDF tools, binary converter, love calculator, age calculator, prayer times, Bangladesh news, quiz generator, font generator, 2FA code.
  • Upload APIs — ImgBB image upload, Nekobin paste, RUBISH paste (RPaste).
  • SMS & Notification APIs — SMS bomber (educational/testing), mix bomber, call bomber (Bangladesh numbers, for testing only).
  • AI Description APIs — Baby name generator, image describe (vision AI), prompt generator, caption generator.

How to Use RUBISH API

  1. Get a free API key by contacting MR RUBISH on Facebook or WhatsApp.
  2. Use the base URL: https://rubish.online/rubish/
  3. Append the endpoint name and required parameters.
  4. Include ?apikey=YOUR_KEY in every request.
  5. All responses are in JSON format.

Frequently Asked Questions

What is RUBISH API Hub?

RUBISH API Hub is a free REST API platform with 100+ endpoints built by MR RUBISH — a Bangladesh-based developer. It covers AI, image, social media, downloader, and utility APIs accessible via simple HTTP GET requests.

Who created RUBISH API Hub?

RUBISH API Hub was created by MR RUBISH, also known as rubish69 — a Bangladeshi bot developer, API engineer, and cybersecurity enthusiast. He is the creator of multiple free tools at rubish.online.

Is RUBISH API free?

Yes, most RUBISH APIs are free to use. You need a free API key which you can get by contacting MR RUBISH on Facebook (facebook.com/I.LOVE.YOU.MY.HATER) or WhatsApp (+8801400976112).

What is the base URL for RUBISH API?

The base URL is https://rubish.online/rubish. Example: https://rubish.online/rubish/weather?city=Dhaka&apikey=YOUR_KEY

How many APIs does RUBISH API Hub have?

RUBISH API Hub currently has 100+ endpoints across categories including AI chat, image generation, image processing, social media, video downloaders, cover generators, utilities, and more. New endpoints are added regularly.

Who is MR RUBISH?

MR RUBISH (rubish69) is a Bangladesh-based developer specializing in building bots, REST APIs, and automation tools. He is the creator of RUBISH API Hub, RubishBin, RUBISH Media Hub, and other free developer tools at rubish.online.

What format do RUBISH API responses use?

All RUBISH API responses are in JSON format. Successful responses include a success: true field along with the result data. Error responses include success: false and an error message.