🤖 CHATBOT

9 endpoints
GET Chatgpt AI
ONLINE
{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "AI response here..."
}

Get AI responses from ChatGPT models

GET /api/chatgpt4?prompt=your_message&model=chatgpt4

Success Response:

{
  "status": 200,
  "model": "chatgpt4",
  "response": "The AI-generated response to your prompt..."
}
GET Venice Chat AI
ONLINE

Send a question and get a chat response from Venice AI.

GET Method

GET /api/venicechat?message=your_message

Parameters:

  • message - The question to ask Venice AI (required)

Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "Hello! I'm functioning as intended, thank you."
}
GET ChatSandbox AI
ONLINE
{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "AI response here..."
}
GET ChatGPT Demo API
ONLINE

Get AI-generated responses from ChatGPT Demo service

GET /api/chatgpt-demo?prompt=your_question

Parameters:

  • prompt - Your question or input text (required)

Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "The AI-generated response to your prompt..."
}

Errors: 400 (missing prompt), 500 (server error or invalid response)

GET LLaMA 3.3 70B API
ONLINE

Access the LLaMA 3.3 70B versatile model via API

GET /api/llama?content=your_query

Parameters:

  • content - Your query/prompt (required)

Success Response:

{
  "status": 200,
  "model": "llama-3.3-70b-versatile",
  "response": "The AI-generated answer..."
}

Error Response:

{
  "status": 400,
  "error": "The 'content' parameter cannot be empty"
}

Model Information:

Using llama-3.3-70b-versatile - A powerful 70 billion parameter LLaMA model

POST SimSimi Chat API
ONLINE

Get responses from the classic SimSimi chatbot

POST /api/simsimi?text=message&lc=en

Parameters:

  • text - Your message (required)
  • lc - Language code (en, id, etc.)

Response:

{
  "success": true,
  "response": "Hello there!",
  "language": "en"
}
GET CleverBot API
ONLINE

Interact with CleverBot's conversational AI

GET /api/cleverbot?input=your_text

Parameters:

  • input - Your message to CleverBot

Response:

{
  "status": "success",
  "response": "How are you today?",
  "cs": "session_token_here"
}
POST Kuki AI API
ONLINE

Chat with Mitsuku/Kuki AI (Pandorabots)

POST /api/kuki?message=your_text

Parameters:

  • message - Your chat message

Response:

{
  "response": "Nice to meet you!",
  "botid": "kuki",
  "status": 200
}
POST Replika AI API
ONLINE

Talk with Replika's emotional AI companion

POST /api/replika?text=message&mood=happy

Parameters:

  • text - Your message (required)
  • mood - AI mood (happy, sad, excited)

Response:

{
  "response": "I'm glad you reached out today!",
  "mood": "happy",
  "status": "success"
}

Outbox Tray Downloader

17 endpoints
GET Shazam Music Search
ONLINE

Search for songs using Shazam's API.

GET /api/shazam?query={search_term}&type=[search|detect]

Response:

Returns music search results in JSON format.

Parameters:

  • query - The search term (required)
  • type - Search type: "search" (default) or "detect" (audio recognition - not implemented)

Response Format:

{
  status: true,
  creator: string,
  data: [{
    id: string,
    title: string,
    artist: string,
    image: string,
    url: string,
    type: string
  }]
}
        
GET Song Lyrics
ONLINE

Fetches song lyrics information including artist, title, and lyrics URL.

GET /api/song-lyrics?q=query

Parameters:

  • q - Song title or artist query (required)

Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": [
    {
      "songId": "12345",
      "artist": "Artist Name",
      "title": "Song Title",
      "lyricsUrl": "https://example.com/lyrics/12345"
    }
  ]
}

Error Response:

{
  "status": false,
  "code": 400,
  "creator": "iconictech",
  "message": "Parameter 'q' is required!"
}
GET Instagram Downloader
ONLINE

Download Instagram videos by providing the post URL. Returns CDN link and thumbnail.

GET /api/igdl?url=instagram_url

Parameters:

  • url - Instagram post URL (required)
Supported URL formats:
• https://www.instagram.com/p/Cs8V5J0hJ4X/
• https://www.instagram.com/reel/Cs8V5J0hJ4X/
• https://www.instagram.com/tv/Cs8V5J0hJ4X/

Successful Response (200):

{
  "status": true,
  "creator": "iconictech",
  "thumbnail": "https://scontent.cdninstagram.com/v/...",
  "cdn": "https://yourdomain.com/cdn/igdl/igdl_1681234567890.mp4"
}
GET Facebook Downloader
ONLINE

API for downloading videos from Facebook.

GET /api/fbdl?url=facebook_url

Parameters:

  • url - URL post Facebook (required)

Response:

{
  "status": true,
  "result": {
    "url": "https://..."
  }
}
GET YouTube to MP3
ONLINE

Converts YouTube videos to MP3 format with metadata.

GET /api/ytmp3?url=youtube_url

Parameters:

  • url - YouTube video URL (short or full) (required)

Success Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "input": "https://youtu.be/dQw4w9WgXcQ",
  "result": {
    "status": true,
    "format": "mp3",
    "title": "Never Gonna Give You Up",
    "url": "https://d.ymcdn.org/dl/123456789.mp3"
  }
}

Error Responses:

{
  "status": false,
  "code": 400,
  "creator": "iconictech",
  "message": "Parameter 'url' is required!"
}
GET IMDB Movie Search
ONLINE
GET APK Search
ONLINE
GET Pinterest Image Search
ONLINE

Scrapes Pinterest for images based on a search query.

GET /api/pinterest?q={search_query}

Parameters:

  • q - The search term for Pinterest images (required)

Response Format:

{
  status: true,
  creator: "iconictech",
  keyword: string,
  total: number,
  result: [
    "https://i.pinimg.com/originals/1a/...jpg",
    "https://i.pinimg.com/originals/2b/...jpg",
    ...
  ]
}
        

Error Responses:

  • 400 - Missing query parameter
  • 404 - No results found
  • 500 - Server error
GET TikTok Downloader
ONLINE

Download TikTok videos without watermark by providing the video URL.

GET Method

GET /api/tiktok-dl?url=tiktok_url

Parameters:

  • url - Complete TikTok video URL (required)

Response:

{
  "status": true,
  "creator": "iconictech",
  "source": "original_url",
  "cdn_mp4": "your_cdn_url.mp4",
  "download_url": "direct_download_url.mp4"
}
GET TikTok Video Search
ONLINE

Search for TikTok videos by keywords and get download links.

GET Method

GET /api/tiktok2?query=search_term

Parameters:

  • query - Search keywords (required)

Response:

{
  "status": true,
  "results": [
    {
      "id": "video123",
      "title": "Video Title",
      "author": "username",
      "download_url": "direct_download_url.mp4",
      "thumbnail": "thumbnail_url.jpg"
    }
  ]
}
GET TikTok Video Downloader V2
ONLINE

Download TikTok videos without watermark by providing the video URL.

GET /api/tik?url=tiktok_url

Parameters:

  • url - Valid TikTok video URL (required)

Successful Response (200):

{
  "status": true,
  "creator": "iconictech",
  "source": "https://www.tiktok.com/@user/video/123456789",
  "title": "Original video title",
  "author": {
    "username": "@username",
    "nickname": "User Display Name"
  },
  "download": {
    "nowm": "https://cdn.example.com/tiktok_123456789.mp4",
    "wm": "https://cdn.example.com/tiktok_wm_123456789.mp4",
    "audio": "https://cdn.example.com/tiktok_audio_123456789.mp3"
  }
}
GET Twitter/X Downloader
ONLINE

Twitter/X Video Download API

GET /api/twit?url=twitter_url&apikey=

Parameters:

  • url - URL video Twitter/X (required)
  • apikey - API Key pengguna (required)

Response:

{
  "status": true,
  "creator": "iconictech",
  "quality": "HD 720p",
  "cdn": "/cdn/twdown/twdown_1715569000000.mp4",
  "remaining_limit": 9985
}
GET YouTube Downloader
ONLINE

YouTube Video & Audio Download API

GET /api/ytdl?url=youtube_url&format=format&apikey=your_apikey

Parameters:

  • url - URL video YouTube (required)
  • format - Format download (mp3, 144, 240, 360, 480, 720, 1080) (required)
  • apikey - API key untuk otentikasi (required)
GET Douyin Downloader
ONLINE

Douyin Video & Audio Download API

GET /api/douyin?url=douyin_url

Parameters:

  • url - URL video Douyin (required)

Response:

{
  "status": true,
  "result": {
    "title": "Video Title",
    "duration": "00:05:12",
    "dl": [
      { "text": "Video", "url": "https://..." },
      { "text": "Audio", "url": "https://..." }
    ]
  }
}
GET Spotify Downloader
ONLINE

Spotify Music Download API

GET /api/spdl?url=spotify_url

Parameters:

  • url - URL lagu di Spotify (required)

Response:

{
  "status": true,
  "result": {
    "url": "https://..."
  }
}
GET MediaFire Downloader
ONLINE

API to download files from MediaFire and get direct CDN links.

GET /api/mediafire?url=mediafire_url&apikey=your_apikey

Parameters:

  • url - URL file dari MediaFire (required)
  • apikey - API key Anda (required)

Response:

{
  "status": true,
  "creator": "iconictech",
  "filename": "namefile.zip",
  "cdn": "https://..."
}
GET Anime9 Search
ONLINE

🛠 Tools

23 endpoints
GET Get WhatsApp Profile Picture
ONLINE

Retrieve the profile picture of a WhatsApp number.

GET Method

GET /api/getppwa?no=phone_number

Parameters:

  • no - WhatsApp phone number including country code (required)

Response 200:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "https://cdn.whatsapp.net/xxxx/profile_pic.jpg"
}
GET CreartAI Text2Image
ONLINE

Generate an image from text using CreartAI.

GET Method

GET /api/creartai/txt2img?prompt=your_text

Response 200:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "base64_encoded_image_here"
}
GET GhibliArt AI - Generate Anime Image
ONLINE

Generates anime-style images from a given text prompt using GhibliArt AI.

GET /api/ghibliart?prompt=your_text_prompt

Parameters:

  • prompt - Text prompt describing the anime image (required)

Sample Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "image": "data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD..."
  }
}

Error responses:

{
  "status": false,
  "code": 400,
  "creator": "iconictech",
  "message": "Parameter 'prompt' is required!"
}
GET CreartAI Image2Image
ONLINE

Generate an image from another image using CreartAI.

GET Method

GET /api/creartai/img2imgv1?prompt=your_text&imagePath=path_to_image

Response 200:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "base64_encoded_image_here"
}
GET Screenshot Web (ssweb)
ONLINE

Take a screenshot of a webpage with optional width, height, full page, and device scale.

GET Method

GET /api/ssweb?url=https://example.com&width=1280&height=720&full_page=false&device_scale=1

Parameters:

  • url - The URL of the webpage to screenshot (required)
  • width - Browser width in pixels (optional, default 1280)
  • height - Browser height in pixels (optional, default 720)
  • full_page - Capture full page: true | false (optional, default false)
  • device_scale - Device pixel ratio (optional, default 1)

Response 200:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "https://cdn.imagy.app/screenshots/abc123.png"
}
GET Audio Transcription AI
ONLINE

Provide a file path and get the audio transcription.

GET Method

GET /api/transcribe?filePath=your_audio_file

Parameters:

  • filePath - Path to the audio file on the server (required)

Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "Transcribed text of the audio"
}
GET Username Generator - Create
ONLINE

Create usernames from a keyword using Instans or AI modes.

GET Method

GET /api/username/create?keyword=your_keyword&mode=instans&theme=action

Parameters:

  • keyword - Base keyword for username (required)
  • mode - Mode: instans | ai (optional)
  • theme - Theme for AI mode (optional)

Response 200:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": ["username1", "username2", "username3"]
}
GET VEO3 AI Video Generator
ONLINE

Generate AI videos using VEO3 with optional auto sound and auto speech.

GET Method

GET /api/veo3?prompt=your_prompt&model=veo-3-fast&auto_sound=false&auto_speech=false

Parameters:

  • prompt - The prompt to generate the video (required)
  • model - Model to use: veo-3-fast | veo-3 (optional)
  • auto_sound - Enable auto sound: true | false (optional)
  • auto_speech - Enable auto speech: true | false (optional)

Response 200:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "videoUrl": "https://cdn.veo3.ai/generated_video.mp4",
    "thumbnail": "https://cdn.veo3.ai/thumbnail.jpg"
  }
}
GET VEO4 AI Video Generator
ONLINE

Generate AI videos with VEO4 using optional auto sound and auto speech features.

GET Method

GET /api/veo4?prompt=your_prompt&model=veo-3-fast&auto_sound=false&auto_speech=false

Parameters:

  • prompt - The prompt to generate the video (required)
  • model - Model: veo-3-fast | veo-3 (optional)
  • auto_sound - Enable auto sound: true | false (optional)
  • auto_speech - Enable auto speech: true | false (optional)

Response 200:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "videoUrl": "https://cdn.veo4.ai/generated_video.mp4",
    "thumbnail": "https://cdn.veo4.ai/thumbnail.jpg"
  }
}
GET iStock Image Search
ONLINE

Searches iStock for images based on a text query. Returns metadata and image URLs.

GET /api/istock/search?q=your_search_term

Parameters:

  • q - Text query for image search (required)

Sample Response:

{
  "status": true,
  "code": 200,
  "creator": "Iconic Tech",
  "executionTime": "123ms",
  "query": "nature",
  "count": 20,
  "results": [
    {
      "id": "12345678",
      "title": "Beautiful forest",
      "type": "image",
      "orientation": "horizontal",
      "quality": "high",
      "artist": "John Doe",
      "uploadDate": "2025-09-04",
      "thumbnailUrl": "https://...",
      "imageUrl": "https://www.istockphoto.com/photo/12345678",
      "dimensions": "1920x1080",
      "creator": "Iconic Tech"
    }
  ]
}

Error response example:

{
  "status": false,
  "code": 400,
  "creator": "Iconic Tech",
  "message": "Search query parameter 'q' is required"
}
POST HTML to Image
ONLINE

Convert HTML code into a downloadable image.

POST Method

POST /api/html2img

Parameters:

  • html - HTML code string (required)

Response:

{
  "status": true,
  "image": "base64_or_url_image"
}
GET Mobapay First Recharge Info
ONLINE

Retrieve Mobapay first recharge items and user info for a specific UID and zone.

GET /api/mobapay?uid=USER_ID&zone=ZONE_ID

Parameters:

  • uid - User ID (required)
  • zone - Server zone ID (required)

Sample Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "username": "Player123",
    "uid": "10001",
    "zone": "1",
    "first_recharge": [
      {
        "title": "First Recharge Pack",
        "available": true,
        "price": "5 USD",
        "original_price": "10 USD"
      }
    ],
    "last_updated": "2025-09-04T12:34:56.789Z"
  }
}

Error response example:

{
  "status": false,
  "code": 400,
  "creator": "iconictech",
  "message": "Parameters 'uid' and 'zone' are required!"
}
POST Website Screenshot
ONLINE

Response 200:

{
  "status": "success",
  "code": 200,
  "creator": "Iconic Tech",
  "type": "desktop",
  "url": "https://example.com",
  "device": "desktop",
  "fullPage": false,
  "contentType": "image/png",
  "size": "125.50 KB",
  "base64": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...",
  "executionTime": "345ms"
}
POST PollAI Query
ONLINE

Ask PollAI any question and optionally attach an image.

POST /api/pollai/ask

Parameters:

  • question - The text question you want to ask (required)
  • systemMessage - Optional system prompt for AI behavior
  • model - AI model to use (default: gpt-4.1-mini)
  • temperature - AI creativity (default: 0.5)
  • imageUrl - Optional image URL
GET Freepik API
ONLINE

Provides endpoints to search Freepik resources, get details of a resource, and download assets.

Search

GET /api/freepik/search?q=query

Detail

GET /api/freepik/detail?url=resource_url

Download

GET /api/freepik/download?url=resource_url

Parameters:

  • q - Search query (required for search)
  • url - Resource URL (required for detail/download)

Sample Search Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "results": [
    {
      "title": "Beautiful Flower",
      "type": "photo",
      "is_premium": false,
      "author": {
        "name": "Jane Doe",
        "avatar": "https://www.freepik.com/avatar.jpg",
        "url": "https://www.freepik.com/author/janedoe"
      },
      "previewUrl": "https://img.freepik.com/preview.jpg",
      "url": "https://www.freepik.com/resource/12345"
    }
  ]
}
GET WriteCream AI Art Generator
ONLINE

Generates AI art based on the provided text prompt and aspect ratio.

GET /api/writecream/generate-art?prompt=your_prompt&ratio=aspect_ratio

Parameters:

  • prompt - Text description for the AI art (required, min 5 chars)
  • ratio - Aspect ratio (optional, default: 1:1)
    Available: 1:1, 16:9, 2:3, 3:2, 4:5, 5:4, 9:16, 21:9, 9:21

Response:

{
  "status": "success",
  "creator": "Iconic Tech",
  "executionTime": 1234,
  "result": {
    "imageUrl": "https://...",
    "prompt": "your prompt",
    "aspectRatio": "1:1",
    "timestamp": "2025-09-04T12:00:00Z"
  }
}
{
  "status": "error",
  "creator": "Iconic Tech",
  "message": "Failed to generate AI art",
  "error": "Error description",
  "prompt": "your prompt",
  "ratio": "1:1"
}
GET Code Generation
ONLINE

Generates code based on the provided prompt in the specified programming language using AI models.

GET /api/generatecode?prompt=your_prompt&language=language&model=model

Parameters:

  • prompt - Description of the code you want to generate (required)
  • language - Programming language for the code (default: JavaScript)
    Supported: JavaScript, C#, C++, Java, Ruby, Go, Python, Custom
  • model - AI model to use (default: gpt-4o-mini)
    Supported: gpt-4o-mini, gpt-4o, gpt-4-turbo, claude-3-opus, claude-3-sonnet

Response:

Successful responses return JSON with the generated code:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "language": "JavaScript",
    "model": "gpt-4o-mini",
    "generated_code": "// Generated code here..."
  }
}

Error responses return JSON with status information:

{
  "status": false,
  "code": 400,
  "creator": "iconictech",
  "message": "Error description"
}

Error codes: 400 (missing/invalid parameters), 500 (generation error)

GET Username Generator - Mix
ONLINE

Mix two names to generate combined usernames.

GET Method

GET /api/username/mix?name1=NameOne&name2=NameTwo

Parameters:

  • name1 - First name (required)
  • name2 - Second name (required)

Response 200:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": ["NameOneNameTwo", "NameTwoNameOne"]
}
GET Sertifikat Tolol
ONLINE

Generates a "Sertifikat Tolol" (Funny Certificate) image with custom text.

GET /api/sertifikat-tolol?text=your_text

Parameters:

  • text - Custom text to display on the certificate (required)

Response:

Returns a PNG image directly.

Example Image:

Example Sertifikat Tolol

Error Response:

{
  "status": false,
  "code": 400,
  "creator": "iconictech",
  "message": "Parameter 'text' is required!"
}
{
  "status": false,
  "code": 500,
  "creator": "iconictech",
  "message": "Failed to fetch image from external API"
}
GET Unsplash Image Search
ONLINE

Search images on Unsplash by keywords.

GET Method

GET /api/unsplash?query=search_term

Parameters:

  • query - Search keywords (required)

Response:

{
  "status": true,
  "results": [
    {
      "title": "Image Title",
      "author": "Author Name",
      "likes": 123,
      "thumbnail": "url",
      "downloadUrl": "url"
    }
  ]
}
POST Text-to-Video Generator
ONLINE

Generate a video from a text prompt using Iconic Tech's Video API.

POST Method

POST /api/text-to-video

Parameters:

  • prompt - Text prompt to generate the video (required, min 10 characters)

Response:

{
  "status": "success",
  "creator": "Iconic Tech",
  "executionTime": 1234,
  "result": {
    "videoUrl": "https://soli.aritek.app/video/generated_video.mp4",
    "prompt": "Your text prompt here",
    "key": "unique_video_key",
    "timestamp": "2025-08-29T12:34:56.789Z"
  }
}
{
  "status": "error",
  "creator": "Iconic Tech",
  "message": "Failed to generate video",
  "error": "Error details"
}
POST RVC Hololive Voice Changer
ONLINE

Convert your audio into Hololive VTuber voices using RVC models.

POST Method

POST /api/rvcholo

Parameters:

  • audio - The audio buffer/file (required)
  • model - VTuber voice model, e.g., moona, lofi, risu (required)
  • transpose - Pitch adjustment in semitones (optional, default: 0)

Response:

{
  "status": true,
  "voice_url": "https://kit-lemonfoot-vtuber-rvc-models.hf.space/file=converted_audio.mp3"
}
GET Email Sender
ONLINE
{
  "status": true,
  "code": 200,
  "creator": "Iconic Tech",
  "executionTime": "123ms",
  "result": "Email sent successfully"
}
GET Weather Info
ONLINE

Get real-time weather information by providing a location.

GET /api/weather?location=city_name

Parameters:

  • location - City or place name (required)

Successful Response (200):

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "data": {
    "location": {
      "name": "London",
      "country": "GB"
    },
    "weather": {
      "main": "Clouds",
      "description": "overcast clouds",
      "icon": "https://openweathermap.org/img/wn/04d@2x.png",
      "temperature": {
        "current": 18.3,
        "feels_like": 17.5
      },
      "last_updated": "2025-05-22T10:22:30.000Z"
    }
  }
}
POST Submit NGL Message
ONLINE

Send anonymous messages to NGL profiles programmatically.

POST /api/ngl (application/json)

Request Body:

{
  "text": "Your message here",
  "url": "https://ngl.link/username"
}

Parameters:

  • text - Message content (max 300 characters)
  • url - Valid NGL profile URL (must start with https://ngl.link/)

Successful Response (200):

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "status": "ok",
    "message": "Question submitted successfully",
    "timestamp": "2023-08-15T14:30:22Z"
  }
}
GET Search DaFont Fonts
ONLINE
GET /api/dafont?q=font_name
  • q – The font name to search on DaFont (required)
{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": [
    {
      "name": "Cool Font",
      "creator": "Font Designer",
      "total_down": "1,234 downloads",
      "link": "https://dl.dafont.com/dl/?f=cool_font"
    },
    {
      "name": "Another Font",
      "creator": "Different Designer",
      "total_down": "5,678 downloads",
      "link": "https://dl.dafont.com/dl/?f=another_font"
    }
  ]
}
GET WhatsApp Group Search
ONLINE

Search for WhatsApp group articles and extract join links.

GET Method

GET /api/whatsapp/search?query=search_term
GET /api/whatsapp/groups?url=article_url

Parameters:

  • query - Search keywords for /search (required)
  • url - Full article URL for /groups (required)

Response (200):

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": [
    {
      "title": "Grup Anime Indonesia",
      "url": "https://whatsgrouplink.com/example-post"
    }
  ]
}
{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": "1) Grup Anime - https://chat.whatsapp.com/AAAA... \n2) Grup Fans - https://chat.whatsapp.com/BBBB..."
}
GET NPM User Information
ONLINE

Get detailed information about an NPM user including their profile and published packages.

GET /api/npm-user?username={npm_username}

Response:

Returns user profile and package information in JSON format.

Parameters:

  • username - The NPM username (required)

Response Format:

{
  status: true,
  code: number,
  creator: "iconictech",
  data: {
    name: string,
    avatar: string,
    email: string,
    github: string,
    twitter: string,
    total: number,
    packages: [{
      name: string,
      version: string,
      description: string,
      downloads: number,
      publish: string,
      url: string
    }]
  }
}
        
GET Image Upscaler
ONLINE

Upscales images to HD resolution (4096x3172) using AI enhancement.

GET /api/upscale?url=image_url

Parameters:

  • url - URL of the image to upscale (jpg/jpeg/png/webp/gif)

Response:

Successful responses return the upscaled PNG image directly with:

  • Content-Type: image/png
  • Content-Length of the image data

Error Responses:

{
  "status": false,
  "code": 400,
  "creator": "iconictech",
  "message": "Invalid or missing URL parameter"
}
{
  "status": false,
  "code": 500,
  "creator": "iconictech",
  "message": "Upscaling failed"
}
GET Subdomain Search
ONLINE
GET GitHub Repository Info
ONLINE

Fetches detailed information about a GitHub repository including owner details, statistics, and metadata.

GET /api/github/repo?username=username&repo=repository

Parameters:

  • username - GitHub username or organization (required)
  • repo - Repository name (required)

Response (200):

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "repo_name": "repository-name",
    "full_name": "username/repository-name",
    "description": "Repository description",
    "owner": {
      "username": "owner-username",
      "profile_url": "https://github.com/owner",
      "avatar_url": "https://avatars.githubusercontent.com/u/12345",
      "type": "User"
    },
    "private": false,
    "html_url": "https://github.com/username/repository",
    "language": "JavaScript",
    "stargazers_count": 100,
    "forks_count": 20,
    "open_issues_count": 3,
    "created_at": "2023-01-01T00:00:00Z",
    "updated_at": "2023-06-01T00:00:00Z"
  }
}
GET Background Removal
ONLINE

Removes the background from an image specified by URL. Returns a PNG image with transparent background.

GET /api/removebg?url=image_url

Parameters:

  • url - URL of the image to process (required)

Response:

Successful responses return the processed PNG image directly with:

  • Content-Type: image/png
  • Content-Length of the image data

Error responses return JSON with status information:

{
  "status": false,
  "code": 400,
  "creator": "iconictech",
  "message": "Error description"
}

Error codes: 400 (missing/invalid parameters), 500 (processing error)

Archive websites as downloadable ZIP files

GET /api/web2zip?url=website_url

Success Response:

{
  "status": 200,
  "model": "web2zip",
  "response": {
    "success": true,
    "downloadUrl": "https://copier.saveweb2zip.com/api/downloadArchive/abc123",
    "stats": {
      "filesCopied": 42,
      "processingTime": 15
    }
  }
}
GET GitHub Repo Info
ONLINE
GET /api/github?username=user&repo=repo_name
  • username – GitHub username or organization (required)
  • repo – Repository name (required)
{
  "status": true,
  "code": 200,
  "result": {
    "repo_name": "example-repo",
    "full_name": "username/example-repo",
    "description": "This is an example repo",
    ...
  }
}
GET Random Poem
ONLINE

API for fetching a random poem scraped from Karyakarsa.com

GET /api/poem

Parameters:

  • No parameters required

Success Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": [
    "Behind the window closed by silence,",
    "The night wind slips in gently.",
    "Carrying longing to the dry branches,",
    "That patiently wait for the rainy season to come."
  ]
}

Error Responses:

{
  "status": false,
  "code": 404,
  "creator": "iconictech",
  "message": "No poems found"
}
{
  "status": false,
  "code": 500,
  "creator": "iconictech",
  "message": "Failed to fetch poem data"
}
GET Pixabay Image Search
ONLINE

Search for free stock photos from Pixabay.

GET /api/pixabay?query={search_term}

Response:

Returns image search results in JSON format.

Parameters:

  • query - The search term for images (required)

Response Format:

{
  status: true,
  creator: "iconictech",
  data: {
    total: number,
    results: [{
      id: number,
      imageURL: string,
      user: string,
      tags: string[]
    }]
  }
}
        

Note: Only returns photo-type images by default.

GET Website Screenshot
ONLINE
GET /api/screenshot?url=website_url
  • url - URL of website to capture (required)
Content-Type: image/png
Content-Disposition: inline; filename="screenshot.png"
GET PLN Tagihan
ONLINE

API to check PLN electricity bills using 12-digit customer ID.

GET /api/pln?id=id_pelanggan&apikey=your_apikey

Parameters:

  • id - PLN Customer ID (12 digits) (required)
  • apikey - Kunci akses API (required)

Response:

{
  "success": true,
  "creator": "iconictech",
  "result": {
    "id": "123456789012",
    "name": "BUDI SANTOSO",
    "balance": "Rp 120.000",
    "period": "JAN-FEB"
  }
}
GET Brat Image
ONLINE
GET /api/brat?text=your_text
  • text - Text to display on the image (required)
{
  "success": true,
  "creator": "iconictech",
  "url": "https://yourdomain.com/brat/sample.png",
  "text": "Sample Text"
}
POST GET Send Email
ONLINE
POST /api/sendemail GET /api/sendemail?to=email@example.com&subject=Hello&text=Message

Parameters

  • to – Recipient email address (required)
  • subject – Email subject (required)
  • text – Email body content (required)
Note: Blacklisted domains: example.com, tempmail.com, mailinator.com, 10minutemail.com, yopmail.com
{
  "status": true,
  "message": "Email sent",
  "to": "recipient@example.com",
  "subject": "Test Email"
}
GET Text-to-Speech (TTS)
ONLINE
GET /api/tts?text=message&model=voice_model

Parameters

  • text - Text to convert to speech (required)
  • model - Voice model to use (required)
{
  "status": true,
  "voice": "Matthew",
  "text": "Hello world",
  "cdn": "https://yourdomain.com/tts/tts_123.mp3"
}
GET Terabox Downloader
ONLINE

Download files from Terabox links and retrieve direct download URLs.

{
  "status": "success",
  "file": "example_file.mp4",
  "size": "15 MB",
  "url": "https://directlink.com/example_file.mp4"
}
POST Savetik TikTok Downloader
ONLINE
{
  "type": "video",
  "title": "Video Title",
  "mp3": "audio_link.mp3",
  "video_sd": "video_sd.mp4",
  "video_hd": "video_hd.mp4"
}
GET Check Host Info
ONLINE
{
  "success": true,
  "creator": "iconictech",
  "result": {
    "ip": "192.168.1.1",
    "name": "Example Domain",
    "isp": "Example ISP",
    "region": "Bulawayo",
    "city": "Bulawayo",
    "timezone": "GMT+2",
    "local_time": "2025-05-12 13:30"
  }
}

📷 Random

13 endpoints
GET Text to Image Generator
ONLINE

Generates a transparent PNG image with custom text using picturetopeople.org service.

GET /api/texttoimage?text=Your Text Here

Parameters:

  • text - Text to convert to image (required)

Response (200):

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "url": "https://www.picturetopeople.org/p2p/text_effects_generator.p2p/result/result_12345.png",
    "title": "generated_text_12345"
  }
}
GET Random Quote
ONLINE

Get a random inspirational quote with author and tags.

GET /api/quotes

Success Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "quote": "The only way to do great work is to love what you do.",
    "author": "Steve Jobs",
    "tags": ["inspirational", "work", "life"]
  }
}
GET AnimeQuote API
ONLINE

Get random anime quotes with character and source information

GET /api/animequote

Success Response:

{
  "status": 200,
  "model": "animequote",
  "response": [
    {
      "character": "Monkey D. Luffy",
      "anime": "One Piece",
      "episode": "Episode 1015",
      "quote": "I don't want to conquer anything. I just think the guy with the most freedom in this whole ocean... is the Pirate King!"
    },
    {
      "character": "Naruto Uzumaki",
      "anime": "Naruto Shippuden",
      "episode": "Episode 476",
      "quote": "I'm not gonna run away anymore... I'm not gonna go back on my word... That is my ninja way!"
    }
  ]
}
POST Carbonify V1
ONLINE

Generate a beautiful PNG image from code using the Carbon API.

POST /api/carbon

Body Parameters (JSON):

  • text – Code string to convert to an image (required)

Success Response:

Returns a PNG image of the formatted code.

Content-Type: image/png

Error Responses:

{
  "status": false,
  "code": 400,
  "creator": "iconictech",
  "message": "Parameter \"text\" is required and must be a string!"
}
{
  "status": false,
  "code": 500,
  "creator": "iconictech",
  "message": "Failed to generate carbon image"
}
GET Magic Studio AI Art Generator
ONLINE

Generates AI art using Magic Studio's API.

GET /api/magic-studio?prompt={your_prompt}

Response:

Returns generated image as PNG.

Parameters:

  • prompt - The text prompt for image generation (required)
GET PromptHero Image API
ONLINE

Generate AI images from text prompts.

GET /api/prompthero?prompt=your_query
  • prompt - Image description (required)

Example: /api/prompthero?prompt=futuristic+city+at+night

GET Generate Anime Image
ONLINE

Generate anime-style images from text prompts using GhibliArt's API.

GET /api/anime-gen?prompt=YOUR_PROMPT (application/json)

Parameters:

  • prompt - Text description of the desired image (required)

Response:

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "imagePath": "/tmp/cute_anime_girl-123456789.jpg",
    "imageUrl": "/tmp/cute_anime_girl-123456789.jpg"
  }
}
GET Imagen Image Generation API
ONLINE

Generate high-quality AI images using Google's Imagen 3.5 model

GET /api/imagen?prompt=your_prompt&size=portrait

Parameters:

  • prompt - Your text description for image generation (required)
  • size - Output size: square (1024×1024), portrait (1024×1792), or landscape (1792×1024)

Success Response:

{
  "status": 200,
  "model": "imagen_3_5",
  "response": {
    "created": 1234567890,
    "data": [
      {
        "url": "https://example.com/generated-image.jpg"
      }
    ]
  }
}
GET Pexels Search API
ONLINE

Search high-quality photos and videos from Pexels

GET /api/pexels?q=search_query&type=photos

Success Response:

{
  "status": 200,
  "model": "pexels-search",
  "response": [
    {
      "id": 1234567,
      "title": "Beautiful Landscape",
      "type": "photos",
      "url": "https://www.pexels.com/photo/1234567/",
      "image": {
        "original": "https://images.pexels.com/photos/1234567/pexels-photo-1234567.jpeg"
      }
    }
  ]
}
GET DeepImg API
ONLINE

Generate AI-powered images with style customization

GET /api/deepimg?prompt=your_prompt&style=default&size=1:1

Success Response:

{
  "status": 200,
  "model": "deepimg-flux-1-dev",
  "response": {
    "image_url": "https://deepimg.ai/generated/example.png",
    "style_used": "ghibli",
    "size_used": "1024x1024"
  }
}
GET FluxAI Image Generation API
ONLINE

Generate AI images using FluxAI's powerful image generation model

GET /api/fluxai?prompt=your_prompt

Parameters:

  • prompt - Your text prompt for image generation (required)

Success Response:

{
  "status": 200,
  "model": "fluxai-image-generation",
  "response": "https://fluxai.pro/generated/image.jpg"
}
GET Code Generation
ONLINE

Generates code based on the provided prompt in the specified programming language using AI models.

GET /api/generatecode?prompt=your_prompt&language=language&model=model

Parameters:

  • prompt - Description of the code you want to generate (required)
  • language - Programming language for the code (default: JavaScript)
    Supported: JavaScript, C#, C++, Java, Ruby, Go, Python, Custom
  • model - AI model to use (default: gpt-4o-mini)
    Supported: gpt-4o-mini, gpt-4o, gpt-4-turbo, claude-3-opus, claude-3-sonnet

Response (200):

{
  "status": true,
  "code": 200,
  "creator": "iconictech",
  "result": {
    "language": "JavaScript",
    "model": "gpt-4o-mini",
    "generated_code": "// Generated code here..."
  }
}
GET Random Anime Image 2
ONLINE

Fetches random anime images from external sources.

GET /api/random-anime?apikey=your_apikey

Parameters:

  • apikey - API access key (required)

Response:

{
  "status": true,
  "creator": "iconictech",
  "url": "http://localhost:3000/tmp/abc123.jpg",
  "remaining_limit": 49
}