{"openapi":"3.0.0","info":{"title":"Naze API","version":"2.0.0","description":"Multi-purpose REST API with 700+ features","contact":{"name":"nazedev","url":"https://naze.biz.id"}},"servers":[{"url":"https://naze.biz.id","description":"Production"},{"url":"http://localhost:3000","description":"Development"}],"components":{"securitySchemes":{"apiKey":{"type":"apiKey","in":"query","name":"apikey","description":"API key for authentication"}},"schemas":{"SuccessResponse":{"type":"object","properties":{"success":{"type":"boolean","example":true},"result":{"type":"object"}}},"ErrorResponse":{"type":"object","properties":{"success":{"type":"boolean","example":false},"error":{"type":"string"},"message":{"type":"string"}}},"FeatureUnavailableResponse":{"type":"object","properties":{"success":{"type":"boolean","example":false},"error":{"type":"string","example":"FEATURE_UNAVAILABLE"},"status":{"type":"string","enum":["maintenance","paused","sleep"]},"message":{"type":"string"}}}}},"security":[{"apiKey":[]}],"paths":{"/ai/aiart/image":{"all":{"tags":["Ai"],"summary":"AI Art Generator - Image","description":"Generate images using various models (Flux, Anime, Realistic). Parameter 'prompt' is required.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"prompt","in":"query","required":true,"schema":{"type":"string","example":"cute anime girl with blue hair, looking at viewer, smiling"}},{"name":"modelId","in":"query","required":false,"schema":{"type":"string","example":"flux2_klein"}},{"name":"ratio","in":"query","required":false,"schema":{"type":"string","example":"1:1"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"prompt":{"type":"string"},"modelId":{"type":"string"},"ratio":{"type":"string"}}}}}},"x-tier":"free"}},"/ai/aiart/video":{"all":{"tags":["Ai"],"summary":"AI Art Generator - Video","description":"Generate video (Wan 2.2, Hunyuan 1.5, LTX). Parameter 'prompt' is required.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"prompt","in":"query","required":true,"schema":{"type":"string","example":"make a cute anime girl walking on the street, smiling, sunlight, detailed skin, 4k"}},{"name":"workType","in":"query","required":false,"schema":{"type":"string","example":"text2video_wan"}},{"name":"videoDuration","in":"query","required":false,"schema":{"type":"number","example":5}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"prompt":{"type":"string"},"workType":{"type":"string"},"videoDuration":{"type":"number"}}}}}},"x-tier":"premium"}},"/ai/art-gen":{"get":{"tags":["Ai"],"summary":"Ai art-gen","description":"This endpoint interfaces with the Yimeta Art service to synthesize highly detailed artistic imagery. By accepting a main text query and an optional negative prompt (defaulting to 'Low quality'), it allows users to deeply customize the generation parameters. Instead of returning a JSON link, this endpoint fetches the resulting image and streams the binary JPEG data directly back to the client with appropriate caching headers. This is ideal for applications requiring immediate, inline display of generated artwork without intermediate client-side fetching.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"A beautiful landscape painting"}},{"name":"neg_prompt","in":"query","required":false,"schema":{"type":"string","example":"low quality, blurry"}}],"x-tier":"premium"}},"/ai/chat":{"get":{"tags":["Ai"],"summary":"Ai chat","description":"This endpoint provides access to the ChatPlus AI service for dynamic text generation. It accepts a user query via GET parameter or a structured array of messages via POST request. Utilizing an underlying 'gpt-4o-mini' model, it handles natural language interactions effectively, returning instant AI-generated responses. This flexible API is perfect for integrating seamless conversational elements into web applications or custom chatbots, ensuring reliable message normalization and processing while offering an intuitive way to manage basic interactive prompts and longer conversational history.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","required":true,"schema":{"type":"string","example":"Hello, how are you?"}}],"x-tier":"free"},"post":{"tags":["Ai"],"summary":"Ai chat","description":"This endpoint provides access to the ChatPlus AI service for dynamic text generation. It accepts a user query via GET parameter or a structured array of messages via POST request. Utilizing an underlying 'gpt-4o-mini' model, it handles natural language interactions effectively, returning instant AI-generated responses. This flexible API is perfect for integrating seamless conversational elements into web applications or custom chatbots, ensuring reliable message normalization and processing while offering an intuitive way to manage basic interactive prompts and longer conversational history.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"messages":[{"role":"system","content":"You are a helpful assistant."},{"role":"user","content":"Hello, how are you?"}]},"properties":{"messages":{"type":"array","items":{"type":"object"}}}}}}},"x-tier":"free"}},"/ai/chat2":{"get":{"tags":["Ai"],"summary":"Ai chat2","description":"This endpoint connects with the Overchat AI system, which leverages the powerful 'gpt-4o' model for sophisticated text completions and contextual conversations. Accessible via GET with a simple query or via POST using a standardized message array, it seamlessly manages deep conversational logic. The internal mechanism processes server-sent events to construct highly accurate, natural language responses. It is highly recommended for developers seeking advanced conversational capabilities, robust natural language understanding, and complex reasoning in their applications, guaranteeing a high-quality chatbot integration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","required":true,"schema":{"type":"string","example":"Explain quantum physics."}}],"x-tier":"free"},"post":{"tags":["Ai"],"summary":"Ai chat2","description":"This endpoint connects with the Overchat AI system, which leverages the powerful 'gpt-4o' model for sophisticated text completions and contextual conversations. Accessible via GET with a simple query or via POST using a standardized message array, it seamlessly manages deep conversational logic. The internal mechanism processes server-sent events to construct highly accurate, natural language responses. It is highly recommended for developers seeking advanced conversational capabilities, robust natural language understanding, and complex reasoning in their applications, guaranteeing a high-quality chatbot integration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"messages":[{"role":"system","content":"You are an expert physicist."},{"role":"user","content":"Explain quantum physics."}]},"properties":{"messages":{"type":"array","items":{"type":"object"}}}}}}},"x-tier":"free"}},"/ai/chat3":{"get":{"tags":["Ai"],"summary":"Ai chat3","description":"This endpoint leverages the Minimal Chatbot API, offering a streamlined and lightweight approach to generating AI responses using the 'gpt-4o-mini' model. It supports both simple GET queries and structured POST payloads, making it highly versatile. By utilizing efficient streaming parsing, the internal logic correctly reconstructs AI responses with minimal latency. It is an excellent choice for applications requiring fast, straightforward, and efficient conversational features, providing reliable natural language text generation without the overhead of more complex conversational processing systems.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","required":true,"schema":{"type":"string","example":"Write a poem about the sea."}}],"x-tier":"free"},"post":{"tags":["Ai"],"summary":"Ai chat3","description":"This endpoint leverages the Minimal Chatbot API, offering a streamlined and lightweight approach to generating AI responses using the 'gpt-4o-mini' model. It supports both simple GET queries and structured POST payloads, making it highly versatile. By utilizing efficient streaming parsing, the internal logic correctly reconstructs AI responses with minimal latency. It is an excellent choice for applications requiring fast, straightforward, and efficient conversational features, providing reliable natural language text generation without the overhead of more complex conversational processing systems.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"messages":[{"role":"system","content":"You are a creative poet."},{"role":"user","content":"Write a poem about the sea."}]},"properties":{"messages":{"type":"array","items":{"type":"object"}}}}}}},"x-tier":"free"}},"/ai/chat4":{"get":{"tags":["Ai"],"summary":"Ai chat4","description":"This endpoint interfaces with the ChatEverywhere API, providing robust AI conversational capabilities powered by the 'gpt-3.5-turbo' model. It allows users to initiate chats via a simple GET query or provide complex conversation structures and custom prompts through POST requests. Known for its strong general-purpose reasoning and comprehensive language understanding, this integration is well-suited for a variety of tasks, ranging from answering questions to assisting with creative writing. The backend logic reliably authenticates and processes interactions, ensuring consistent and high-quality responses.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","required":true,"schema":{"type":"string","example":"Tell me a joke."}}],"x-tier":"free"},"post":{"tags":["Ai"],"summary":"Ai chat4","description":"This endpoint interfaces with the ChatEverywhere API, providing robust AI conversational capabilities powered by the 'gpt-3.5-turbo' model. It allows users to initiate chats via a simple GET query or provide complex conversation structures and custom prompts through POST requests. Known for its strong general-purpose reasoning and comprehensive language understanding, this integration is well-suited for a variety of tasks, ranging from answering questions to assisting with creative writing. The backend logic reliably authenticates and processes interactions, ensuring consistent and high-quality responses.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"prompt":"Halo","messages":[{"role":"system","content":"System Ai on"},{"role":"assistant","content":"Hallo to"},{"role":"user","content":"How are you?"}]},"properties":{"prompt":{"type":"string"},"messages":{"type":"array","items":{"type":"object"}}}}}}},"x-tier":"free"}},"/ai/chat5":{"get":{"tags":["Ai"],"summary":"Ai chat5","description":"This endpoint connects to the NoteGPT AI service, specifically utilizing an efficient 'gpt-4.1-mini' model to provide intelligent text generation. Whether receiving a single text query via GET or a message payload via POST, it consistently streams and pieces together coherent natural language responses. It is designed to handle queries intelligently with a balanced length and default tone, making it ideal for tasks that require concise, moderate-length answers. Developers can integrate this to offer rapid and highly adaptable conversational assistants in their projects.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","required":true,"schema":{"type":"string","example":"What is AI?"}}],"x-tier":"free"},"post":{"tags":["Ai"],"summary":"Ai chat5","description":"This endpoint connects to the NoteGPT AI service, specifically utilizing an efficient 'gpt-4.1-mini' model to provide intelligent text generation. Whether receiving a single text query via GET or a message payload via POST, it consistently streams and pieces together coherent natural language responses. It is designed to handle queries intelligently with a balanced length and default tone, making it ideal for tasks that require concise, moderate-length answers. Developers can integrate this to offer rapid and highly adaptable conversational assistants in their projects.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"message":"What is AI?"},"properties":{"message":{"type":"string"},"chat":{"type":"string"},"query":{"type":"string"}}}}}},"x-tier":"free"}},"/ai/chatai":{"get":{"tags":["Ai"],"summary":"Informasi Chatbot AI","description":"This endpoint provides essential diagnostic information regarding the ChatAI API service. Upon receiving a GET request, it returns a comprehensive overview of the available system features, including supported routes, a full list of accessible AI models (such as deepseek, gemini, and claude), the default model configuration, and current quota limitations. It serves as a vital tool for developers needing to dynamically query the server’s status and confirm the availability of specific conversational models before initiating heavier, stateful chat interactions within their applications.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/ai/chatai/chat":{"get":{"tags":["Ai"],"summary":"Chatbot AI","description":"This endpoint facilitates straightforward interactions with the ChatAI service using a simple GET request. It requires a text query and allows an optional model parameter to dictate which AI backend processes the prompt. Utilizing built-in retry mechanisms, robust session handling, and cookie-based authentication, it reliably fetches accurate, AI-generated text responses. Ideal for quick queries and single-turn conversations, it provides developers with an easily integratable solution for adding intelligent, real-time chatbot functionalities to applications without the need for complex message payloads or extensive setup.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"model","in":"query","required":false,"schema":{"type":"string","example":"chatgpt"}}],"x-tier":"free"},"post":{"tags":["Ai"],"summary":"Chatbot AI","description":"This endpoint is designed for advanced, multi-turn conversational interactions via the ChatAI service. Accessible through a POST request, it accepts a rigorously structured array of message objects (roles and contents) along with an optional model specification. The robust internal validation ensures all input strictly follows the required format before processing. Leveraging persistent session management and automatic retries, this endpoint is perfectly suited for building sophisticated chatbots, virtual assistants, or context-aware digital companions that demand highly accurate, reliable, and continuous natural language processing.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"messages":[{"role":"system","content":"You are a friendly AI."},{"role":"user","content":"Halo, siapa kamu?"}],"model":"chatgpt"},"properties":{"messages":{"type":"array","items":{"type":"object"}},"model":{"type":"string"}}}}}},"x-tier":"free"}},"/ai/chatai/refresh":{"get":{"tags":["Ai"],"summary":"Chatbot AI","description":"This endpoint handles the manual refreshing of the underlying session mechanisms for the ChatAI service. When invoked, it purposefully clears the current local caching and forcibly requests a new session complete with updated authentication cookies and CSRF tokens from the external provider. This ensures uninterrupted connectivity and mitigates issues related to expired credentials or exhausted quotas. It is highly recommended for developers maintaining long-running backend services who need a reliable method to reset connections and guarantee the stability of continuous conversational AI interactions.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/ai/chatgpt":{"all":{"tags":["Ai"],"summary":"ChatGPT Official App Scraper","description":"Chat with OpenAI directly bypassing the frontend. Supports conversation history and web search capabilities.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"message","in":"query","required":true,"schema":{"type":"string","example":"Hai, siapa kamu?"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"message":{"type":"string","example":"Siapa kamu?"},"auth":{"type":"object","description":"Authentication object returned from a previous response to continue a conversation"},"chatId":{"type":"string","description":"Chat ID returned from a previous response to continue a conversation"}}}}}},"x-tier":"free"}},"/ai/chatgpt-3.5":{"get":{"tags":["Ai"],"summary":"Ai chatgpt-3.5","description":"This endpoint provides a stable, reliable connection to the legacy 'gpt-3.5' language model architecture. Through a standard GET request, users can pass a simple text query to receive quick, contextually relevant conversational responses. Known for its strong general-purpose utility and excellent speed, this integration is well-suited for general inquiries, basic creative writing, and standard natural language processing tasks. It guarantees efficient execution and straightforward integration for developers seeking a tried-and-true AI text generation solution.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/chatgpt-4.0-mini":{"all":{"tags":["Ai"],"summary":"Ai chatgpt-4.0-mini","description":"This highly versatile endpoint accommodates both GET and POST methods, granting developers seamless access to the 'smith.chat' AI handling capabilities. Whether passing a direct query or an array of contextual messages, it intelligently processes the input to generate highly accurate conversational responses. Leveraging robust error handling and flexible input mapping, it is ideal for diverse integrations ranging from simple interactive prompts to comprehensive, multi-turn dialogue management, ensuring reliable performance across a broad array of applications.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":false,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"messages","in":"query","required":false,"schema":{"type":"string","example":"[{\"role\":\"user\",\"content\":\"Halo, siapa kamu?\"}]"}}],"x-tier":"free"}},"/ai/chatgpt-4.1":{"get":{"tags":["Ai"],"summary":"Ai chatgpt-4.1","description":"This endpoint provides access to the 'gpt-4.1' model using the specialized 'pollai' internal service. It requires a mandatory text query via a GET request to generate deep and coherent natural language responses. With robust capabilities in general reasoning and creative writing, this endpoint is highly suitable for demanding applications, comprehensive data analysis, and advanced problem-solving scenarios. Developers can seamlessly integrate this endpoint to ensure consistent, high-quality AI text generation tailored to complex user prompts.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/chatgpt-4.1-mini":{"get":{"tags":["Ai"],"summary":"Ai chatgpt-4.1-mini","description":"This endpoint taps into the streamlined 'gpt-4.1-mini' model, optimized for speed and efficiency via the 'pollai' service. By supplying a standard GET query parameter, developers can retrieve concise, highly accurate text generation almost instantaneously. It maintains a strong balance between computational speed and intelligent reasoning, making it the perfect backend choice for dynamic web platforms, responsive customer service bots, and real-time interactive tools requiring reliable artificial intelligence without extensive processing overhead.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/chatgpt-4.1-nano":{"get":{"tags":["Ai"],"summary":"Ai chatgpt-4.1-nano","description":"This endpoint utilizes the ultra-lightweight 'gpt-4.1-nano' model, specifically designed for high-speed, low-latency text operations. Requiring a simple text query via GET, it returns rapid AI-generated responses with minimal computational footprint. It is incredibly useful for embedded systems, rapid-fire chatbot interactions, and lightweight scripting tasks where immediate feedback is paramount. Developers can rely on this API to provide basic reasoning, quick answers, and efficient text processing seamlessly within performance-sensitive environments.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/chatgpt-5":{"get":{"tags":["Ai"],"summary":"Ai chatgpt-5","description":"This endpoint connects users to the powerful 'gpt-5' model variant through the established chatgpt2022 integration. Requiring only a straightforward GET query, it rapidly processes complex text prompts to deliver highly sophisticated, state-of-the-art responses. It excels in tasks requiring deep reasoning, expansive knowledge retrieval, and nuanced language comprehension. Developers can effortlessly leverage this endpoint to provide cutting-edge artificial intelligence features, ensuring their applications benefit from exceptional reliability, high-quality text generation, and unparalleled conversational capabilities.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/chatgpt-5-mini":{"get":{"tags":["Ai"],"summary":"Ai chatgpt-5-mini","description":"This endpoint leverages the highly efficient 'gpt-5-mini' model for rapid and accurate text generation. Accessible via a standard GET request, it demands a query parameter to initiate processing. The underlying logic is optimized for fast execution, returning not only the intelligent response but also detailed metrics regarding the duration of the request. It is exceptionally well-suited for performance-critical applications that require quick answers, real-time text completion, or rapid conversational assistance without sacrificing output quality.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/chatgpt2":{"get":{"tags":["Ai"],"summary":"Ai chatgpt","description":"This endpoint provides direct access to the standard ChatGPT service for natural language generation. Supporting GET requests, it seamlessly processes either a single text prompt or a stringified JSON array of message objects. The underlying client translates these inputs into sophisticated conversational responses using accurate time and location formatting. It is exceptionally useful for developers seeking to embed basic question-answering capabilities or quick, context-free AI generation into their applications with minimal overhead and reliable processing.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"prompt","in":"query","required":false,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"messages","in":"query","required":false,"schema":{"type":"string","example":"[{\"role\":\"user\",\"content\":\"Halo, siapa kamu?\"}]"}}],"x-tier":"free"},"post":{"tags":["Ai"],"summary":"Ai chatgpt","description":"This endpoint provides robust access to the standard ChatGPT service through POST requests. It is uniquely structured to handle both single textual prompts and complex arrays of conversational messages. By mapping inputs to internal user roles and generating precise identifiers, it ensures the reliable preservation of conversational context. This API is indispensable for developers building scalable, stateful chatbots or intricate virtual assistants that demand comprehensive, multi-turn natural language processing and highly intelligent, context-aware responses.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"prompt":"Halo","messages":[{"role":"system","content":"You are ChatGPT."},{"role":"user","content":"Halo, siapa kamu?"}]},"properties":{"prompt":{"type":"string"},"messages":{"type":"array","items":{"type":"object"}}}}}}},"x-tier":"free"}},"/ai/claude":{"get":{"tags":["Ai"],"summary":"Ai claude","description":"This endpoint facilitates seamless access to the sophisticated Claude 3.7 AI model, renowned for its exceptional conversational intelligence, nuanced understanding, and safe response generation. By submitting a required text query, users can obtain detailed, articulate, and contextually rich answers. The integration is carefully designed to handle a wide range of tasks, including creative writing, complex analysis, and technical problem-solving. Utilizing a streamlined internal handler, this endpoint guarantees an efficient and highly reliable connection to the Claude model, empowering applications with top-tier artificial intelligence and advanced reasoning capabilities.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/cloudflare":{"get":{"tags":["Ai"],"summary":"Ai cloudflare","description":"This endpoint connects directly to Cloudflare's robust AI worker architecture, offering exceptionally fast and reliable natural language processing. Accessible via a GET request, it demands both a mandatory prompt and a system instruction to explicitly frame the AI's persona or operational boundaries. By default, it employs the 'llama-3.1-8b-instruct-fast' model, though developers can dynamically specify alternative models. This endpoint is highly recommended for building highly responsive, low-latency applications, edge-computing solutions, and precise conversational interfaces that require strict systemic instructions and rapid execution.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"system","in":"query","required":true,"schema":{"type":"string","example":"You are a helpful assistant"}},{"name":"prompt","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"model","in":"query","required":false,"schema":{"type":"string","example":"@cf/meta/llama-3.1-8b-instruct-fast"}}],"x-tier":"free"}},"/ai/copilot":{"get":{"tags":["Ai"],"summary":"Ai copilot","description":"This endpoint establishes a direct connection to the Microsoft Copilot conversational interface via WebSocket communication. By accepting a necessary text query and an optional session ID, it flawlessly handles real-time message streaming and session continuity. The underlying logic efficiently captures continuous text fragments, session updates, and suggested follow-ups before safely returning a finalized, comprehensive conversational response. Developers can integrate this API to quickly embed high-quality Microsoft Copilot AI capabilities, complete with real-time text completion and intelligent suggestion generation, into custom web or mobile platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"12345-abcde"}}],"x-tier":"free"}},"/ai/deepseek-r1":{"get":{"tags":["Ai"],"summary":"Ai deepseek-r1","description":"This endpoint integrates the highly efficient DeepSeek-R1 AI model to handle diverse conversational and analytical tasks. Users must supply a text query, which the system processes to return insightful, accurate, and context-aware responses. Known for its strong performance in reasoning and coding assistance, the DeepSeek-R1 model serves as an excellent backend for building intelligent chatbots or automated assistants. It provides seamless execution through the internal AI library, ensuring that users receive rapid and reliable text generation suitable for both straightforward answers and intricate problem-solving scenarios.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/deepseek-v3":{"get":{"tags":["Ai"],"summary":"Ai deepseek-v3","description":"This endpoint connects users to the powerful DeepSeek-V3 artificial intelligence model, delivering state-of-the-art natural language processing capabilities. By simply passing a query parameter, the system generates comprehensive and highly accurate text responses. This model excels at processing nuanced prompts, providing detailed explanations, and assisting with advanced cognitive tasks. Leveraging an optimized internal AI handler, the endpoint ensures low latency and high reliability, making it an ideal choice for developers looking to integrate a versatile and cutting-edge conversational AI into their dynamic applications and digital services.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/flux-pro":{"get":{"tags":["Ai"],"summary":"Ai flux-pro","description":"This endpoint integrates with the Llama Flux Pro model to generate state-of-the-art images from textual descriptions. Requiring a query parameter via GET, it includes built-in middleware for premium rate limiting to manage high-tier resource consumption. It rapidly returns the hosted URL of the generated image along with detailed processing metrics such as execution duration. This API is perfect for premium-tier applications demanding high-fidelity, professional-grade image synthesis from natural language prompts.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"A futuristic city at night"}}],"x-tier":"premium"}},"/ai/gemini":{"get":{"tags":["Ai"],"summary":"Ai gemini","description":"This endpoint provides direct integration with the Google Gemini AI model, supporting both standard text queries and multimodal inputs containing media files. Accessible via a standard GET request, it systematically rotates API keys to balance load and maintain high availability. When a media URL is provided, it intelligently fetches, buffers, and processes the file alongside the text prompt. This capability is exceptionally useful for developers seeking to build advanced applications capable of parsing and analyzing both complex natural language and multimedia content simultaneously.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"prompt","in":"query","required":false,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"media","in":"query","required":false,"schema":{"type":"string","example":"https://example.com/image.jpg"}}],"x-tier":"free"}},"/ai/gemini-flash":{"get":{"tags":["Ai"],"summary":"Ai gemini-flash","description":"This endpoint leverages the advanced Gemini Flash AI model, known for its exceptional balance between processing speed and robust natural language comprehension. Utilizing an internal session management library, it accepts both a required text query and an optional session identifier via a GET request to maintain stateful conversations. The rigorous input validation guarantees secure and reliable interactions. Developers can utilize this endpoint to build sophisticated conversational systems that demand fast yet deeply contextual text generation across prolonged user sessions.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"eyJuYW1lIjoiIn0="}}],"x-tier":"free"}},"/ai/gemini-flash-lite":{"get":{"tags":["Ai"],"summary":"Ai gemini-flash-lite","description":"This endpoint offers a streamlined connection to the Gemini Flash Lite model, prioritizing rapid response generation with minimal processing overhead. Requiring only a text query through a GET request, it operates as an extremely fast, lightweight conversational interface. It is highly suited for implementations that demand swift, real-time AI assistance, straightforward text completion, and minimal latency. Developers should integrate this API when high-speed text interaction is paramount, ensuring users receive immediate and accurate responses in performance-sensitive application environments.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/gemini-pro":{"get":{"tags":["Ai"],"summary":"Ai gemini-pro","description":"This endpoint utilizes the highly capable Gemini Pro model, designed to handle complex reasoning, deep analysis, and intricate natural language generation. By accepting a mandatory GET query and an optional conversational ID, it seamlessly integrates with internal AI managers to deliver superior text outputs. The strict validation logic ensures secure session continuity. This API is indispensable for developers creating advanced analytical tools, comprehensive digital assistants, and applications requiring the highest level of artificial intelligence and contextual understanding.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"id","in":"query","required":false,"schema":{"type":"string","example":"eyJuYW1lIjoiIn0="}}],"x-tier":"free"}},"/ai/gemmy":{"get":{"tags":["Ai"],"summary":"Ai gemmy","description":"This endpoint provides direct conversational access to the Gemini 1.5 Flash model through a specialized internal Firebase integration. Designed to handle multimodal inputs, it accepts a required text query and seamlessly processes both natural language and image data when provided. The robust error handling ensures reliable text generation. Developers can use this endpoint to add advanced chatbot capabilities, enabling their applications to understand user prompts deeply and deliver accurate, context-aware responses powered by Google's powerful conversational AI architecture.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/gemmy2":{"get":{"tags":["Ai"],"summary":"Ai gemmy2","description":"This endpoint specializes in high-quality image generation utilizing Google's Imagen 3.0 model via a robust Firebase Vertex AI integration. By accepting a mandatory text prompt, it configures advanced generation parameters—such as aspect ratio and safety settings—to produce professional-grade imagery. Furthermore, it automatically uploads the generated images to an external storage service (Uguu), returning a list of accessible URLs. This API is indispensable for applications requiring reliable, automated text-to-image capabilities with integrated image hosting.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"A beautiful landscape"}}],"x-tier":"free"}},"/ai/grok":{"get":{"tags":["Ai"],"summary":"Ai grok","description":"This endpoint provides direct integration with the Grok-3-mini AI model, known for its rapid processing speed and unique conversational style. Users are required to submit a query string, which the endpoint evaluates to generate engaging, accurate, and context-specific text responses. The lightweight yet powerful nature of the Grok-3-mini model makes it highly suitable for real-time interactions, automated assistance, and dynamic content generation. By leveraging the internal AI handling mechanisms, this endpoint ensures that developers can easily incorporate responsive, cutting-edge artificial intelligence features into their diverse digital platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/imgedit":{"all":{"tags":["Ai"],"summary":"NanoBanana Image Editor","description":"Edit / Generate image modification using NanoBanana API (imgedit.ai)","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"imageUrl","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/image.jpg"}},{"name":"prompt","in":"query","required":true,"schema":{"type":"string","example":"make it cyberpunk style"}}],"requestBody":{"required":false,"content":{"application/json":{"schema":{"type":"object","properties":{"imageUrl":{"type":"string"},"prompt":{"type":"string"}}}}}},"x-tier":"premium"}},"/ai/islamic":{"get":{"tags":["Ai"],"summary":"Ai islamic","description":"This specialized conversational endpoint is exclusively designed to answer questions related to Islamic teachings and principles. Accepting a standard text query via a GET request, it routes the prompt to a dedicated external service that contextualizes answers using precise Quranic references and explanations. The internal logic strictly formats the query to ensure responses remain contextually relevant to Islamic theology. Developers can confidently integrate this endpoint to provide users with accurate, respectful, and highly specialized religious guidance within their applications.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Apa itu rukun Islam?"}}],"x-tier":"free"}},"/ai/llama":{"all":{"tags":["Ai"],"summary":"Ai llama","description":"This endpoint provides access to the Llama AI model for generating intelligent responses based on user input. You can pass either a simple text query or an array of message objects for conversational context. It leverages a robust serverless architecture via AWS API Gateway to fetch high-quality natural language processing results. This integration is ideal for tasks requiring comprehensive text generation, answering questions, or engaging in multi-turn dialogues. By seamlessly connecting to the external LLM service, it ensures rapid and accurate content creation tailored to your specific queries or chat history.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":false,"schema":{"type":"string","example":"Halo, siapa kamu?"}},{"name":"messages","in":"query","required":false,"schema":{"type":"string","example":"[{\"role\":\"user\",\"content\":\"Halo, siapa kamu?\"}]"}}],"x-tier":"free"}},"/ai/llama-3.3":{"get":{"tags":["Ai"],"summary":"Ai llama-3.3","description":"This endpoint enables interaction with the advanced Llama 3.3 model to deliver superior natural language understanding and generation capabilities. By providing a required text query, users can instantly receive highly coherent and contextually relevant responses. It utilizes the core AI handling library to process requests efficiently, making it perfectly suited for complex reasoning, creative writing, and detailed explanations. The integration ensures a smooth conversational experience while maintaining high performance, allowing developers to effortlessly incorporate cutting-edge artificial intelligence features into their applications and workflows.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Halo, siapa kamu?"}}],"x-tier":"free"}},"/ai/message":{"post":{"tags":["Ai"],"summary":"Ai message","description":"This specialized endpoint leverages the internal UnlimitedAI library to process complex arrays of conversational messages. Designed exclusively for POST requests, it rigorously validates incoming payloads to ensure they conform strictly to expected conversational formats (e.g., proper roles and content strings). By strictly enforcing message structure, it guarantees optimal stability and reliable AI interactions. This endpoint is perfectly suited for developers building sophisticated, stateful conversational interfaces that require precise role management and high-quality natural language message processing across multiple dialogue turns.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"messages":[{"role":"system","content":"System initialization complete."},{"role":"user","content":"Hello AI!"}]},"properties":{"messages":{"type":"array","items":{"type":"object"}}}}}}},"x-tier":"free"}},"/ai/meta-ai":{"get":{"tags":["Ai"],"summary":"Ai meta-ai","description":"This endpoint provides a robust, seamless connection to Meta AI, leveraging automated session and token management. Given a required text query, the internal system simulates a secure, authenticated web session—complete with cookie parsing and CSRF token extraction—to safely transmit the prompt. By utilizing custom WebSocket-like streams and intelligent payload construction, it continuously processes the streaming response until the entire natural language answer is formed. Developers can integrate this endpoint to embed deeply contextual and high-quality Meta AI capabilities directly into their production environments with reliable state management.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"What is the capital of Indonesia?"}}],"x-tier":"free"}},"/ai/perplexity":{"get":{"tags":["Ai"],"summary":"Ai perplexity","description":"This endpoint grants programmatic access to the Perplexity AI search engine via an advanced Server-Sent Events (SSE) integration. By supplying a standard text query, the system emulates a mobile client request, configuring specific parameters such as internet-enabled search and concise tone formatting. It actively streams and parses the incoming data, extracting the final textual answer alongside valuable metadata, related subqueries, and direct web source links. This API is highly recommended for developers needing an intelligent, search-backed conversational agent capable of real-time web querying and thorough citation.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"What is quantum mechanics?"}}],"x-tier":"free"}},"/ai/pose-gen":{"get":{"tags":["Ai"],"summary":"Ai pose-gen","description":"This endpoint focuses on generating structured, pose-specific imagery using the Yimeta Pose model. It accepts a primary text prompt and an optional negative prompt to precisely guide the visual output. Similar to the art-gen endpoint, it handles the generation and directly proxies the raw JPEG image buffer back to the user with proper HTTP caching and inline disposition headers. This is highly useful for developers creating character reference tools, anatomy guides, or dynamic posing applications requiring direct image rendering.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"A warrior standing in a heroic pose"}},{"name":"neg_prompt","in":"query","required":false,"schema":{"type":"string","example":"low quality, blurry"}}],"x-tier":"premium"}},"/ai/search-ai":{"get":{"tags":["Ai"],"summary":"Ai search-ai","description":"This powerful endpoint utilizes WebSocket communication to interface with Searc.ai, generating comprehensive, web-sourced research reports from a single text query. Upon connection, it orchestrates complex AI agents to systematically scrape relevant websites, gather images, and compile detailed findings. It streams the progress—tracking associated costs, parsed pages, and discovered assets—before outputting a finalized textual report complete with source URLs and structured metadata. Developers should leverage this endpoint when building deep-research tools, analytical assistants, or automated data-gathering platforms that require extensive, multi-step web investigation.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Who is the president of the United States?"}}],"x-tier":"free"}},"/ai/waifu-ilustration":{"get":{"tags":["Ai"],"summary":"Ai waifu-ilustration","description":"This specialized endpoint utilizes the Waifu Illustrious model to generate anime-style or character-focused illustrations. It accepts a mandatory text query via GET and applies premium access controls to restrict usage. The system swiftly processes the prompt and returns a direct link to the resulting artwork along with precise performance metrics. Developers building anime-centric platforms, character design tools, or digital art communities will find this API exceptionally tailored to their highly stylized image generation needs.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"A cute anime girl with blue hair"}}],"x-tier":"premium"}},"/ai/webpilot":{"get":{"tags":["Ai"],"summary":"Ai webpilot","description":"This endpoint provides access to the WebPilot AI search integration, allowing applications to perform intelligent, real-time web exploration based on a simple text query. Utilizing a simulated API connection, it processes a Server-Sent Events (SSE) stream to extract comprehensive chat responses alongside the specific internet sources used to compile the answer. This is an excellent tool for developers looking to add grounded, citation-backed web search capabilities and informative conversational outputs directly into their digital platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"latest technology news"}}],"x-tier":"free"}},"/bypass/redirectlink":{"get":{"tags":["Bypass"],"summary":"Bypass redirectlink","description":"This endpoint provides a reliable bypassing service specifically designed to extract direct URLs from various intermediate redirect links. By securely interfacing with an external bypass API and seamlessly handling dynamic token generation, it allows the application to circumvent annoying redirect loops or ad-supported intermediate pages. The API validates the provided URL and automatically resolves the final destination, returning the direct link along with caching status. This feature is extremely beneficial for applications that aim to improve user experience by offering safe, ad-free, and instantaneous access to intended web resources.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/link"}}],"x-tier":"premium"}},"/bypass/skiplink":{"get":{"tags":["Bypass"],"summary":"Bypass skiplink","description":"This endpoint offers an advanced link bypassing capability utilizing the Bypass.city API. Designed to effortlessly navigate through captchas and ad-blocker hurdles, it automatically retrieves and applies a valid Turnstile solver token before submitting the target URL. The system rigorously validates the input URL format and leverages premium access controls to maintain service quality. Developers can integrate this endpoint to automatically resolve complex shortlinks or monetized URLs into their final destinations, significantly streamlining content access within their applications while avoiding manual captcha interventions.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/link"}}],"x-tier":"premium"}},"/bypass/turnstile":{"get":{"tags":["Bypass"],"summary":"Bypass turnstile","description":"This endpoint offers an automated bypass solution for Cloudflare's Turnstile captcha verification. By requiring the target URL and the specific sitekey, it delegates the complex solving process to an external worker and securely retrieves a valid bypass token. Additional header configurations can optionally be customized to better mimic human interaction. Restricted to premium users, this integration enables developers to transparently overcome Turnstile challenges in automated scripts, scrapers, or programmatic browsers, ensuring uninterrupted API flows and stable automated access to heavily protected target resources.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/link"}},{"name":"sitekey","in":"query","required":true,"schema":{"type":"string","example":"0x4AAAAAAAGzw6rXeQWJ_y2P"}},{"name":"headers","in":"query","required":false,"schema":{"type":"string","example":"1"}}],"x-tier":"premium"}},"/create/absolute-cinema":{"all":{"tags":["Create"],"summary":"Create absolute-cinema","description":"This endpoint adds the popular 'Absolute Cinema' stylistic overlay to user-provided images. Following rigorous format checks and necessary conversions, the uploaded image buffer is passed through a dedicated processing module that composites the cinematic meme elements. The resulting JPEG image is streamed directly back to the client. This API is highly valuable for developers looking to inject trending, meme-based visual reactions into their chat applications, social platforms, or community forums with high fidelity and zero local rendering overhead.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/image.jpg"}}],"x-tier":"free"}},"/create/attp":{"get":{"tags":["Create"],"summary":"Create attp","description":"This endpoint offers animated text-to-picture (ATTP) generation, transforming standard text queries into dynamic, animated WebP images. By seamlessly connecting to specialized external rendering APIs, it processes text into vibrant animated stickers and proxies the resulting WebP buffer directly to the client. The built-in ETag caching architecture ensures identical requests are served near-instantly without redundant processing. This API is highly sought after by developers building modern chat applications or automated bots aiming to provide users with engaging, animated conversational assets.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/attp2":{"get":{"tags":["Create"],"summary":"Create attp2","description":"This endpoint offers animated text-to-picture (ATTP) generation, transforming standard text queries into dynamic, animated WebP images. By seamlessly connecting to specialized external rendering APIs, it processes text into vibrant animated stickers and proxies the resulting WebP buffer directly to the client. The built-in ETag caching architecture ensures identical requests are served near-instantly without redundant processing. This API is highly sought after by developers building modern chat applications or automated bots aiming to provide users with engaging, animated conversational assets.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/attp3":{"get":{"tags":["Create"],"summary":"Create attp3","description":"This endpoint offers animated text-to-picture (ATTP) generation, transforming standard text queries into dynamic, animated WebP images. By seamlessly connecting to specialized external rendering APIs, it processes text into vibrant animated stickers and proxies the resulting WebP buffer directly to the client. The built-in ETag caching architecture ensures identical requests are served near-instantly without redundant processing. This API is highly sought after by developers building modern chat applications or automated bots aiming to provide users with engaging, animated conversational assets.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/attp4":{"get":{"tags":["Create"],"summary":"Create attp4","description":"This endpoint offers animated text-to-picture (ATTP) generation, transforming standard text queries into dynamic, animated WebP images. By seamlessly connecting to specialized external rendering APIs, it processes text into vibrant animated stickers and proxies the resulting WebP buffer directly to the client. The built-in ETag caching architecture ensures identical requests are served near-instantly without redundant processing. This API is highly sought after by developers building modern chat applications or automated bots aiming to provide users with engaging, animated conversational assets.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/blurface":{"all":{"tags":["Create"],"summary":"Blur Face Image","description":"The image file to blur faces from.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"image","in":"query","required":false,"schema":{"type":"string","example":"https://i.pinimg.com/736x/0b/9f/0a/0b9f0a92a598e6c22629004c1027d23f.jpg"}}],"requestBody":{"required":false,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"image":{"type":"string","format":"binary"}}}}}},"x-tier":"free"}},"/create/brat":{"get":{"tags":["Create"],"summary":"Create brat","description":"This endpoint renders text into the iconic, highly recognizable 'Brat' style image aesthetic. By securely proxying the raw text query to an external rendering service, it rapidly returns the generated graphic as a raw PNG buffer. The integrated caching mechanism (ETag) intelligently avoids regenerating identical requests, significantly improving response times and minimizing external API usage. Content creators and social media application developers will find this tool perfect for injecting trendy, meme-style text graphics directly into their platforms with zero rendering overhead.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/brat2":{"get":{"tags":["Create"],"summary":"Create brat2","description":"This endpoint renders text into the iconic, highly recognizable 'Brat' style image aesthetic. By securely proxying the raw text query to an external rendering service, it rapidly returns the generated graphic as a raw PNG buffer. The integrated caching mechanism (ETag) intelligently avoids regenerating identical requests, significantly improving response times and minimizing external API usage. Content creators and social media application developers will find this tool perfect for injecting trendy, meme-style text graphics directly into their platforms with zero rendering overhead.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/brat3":{"get":{"tags":["Create"],"summary":"Create brat3","description":"This endpoint renders text into the iconic, highly recognizable 'Brat' style image aesthetic. By securely proxying the raw text query to an external rendering service, it rapidly returns the generated graphic as a raw PNG buffer. The integrated caching mechanism (ETag) intelligently avoids regenerating identical requests, significantly improving response times and minimizing external API usage. Content creators and social media application developers will find this tool perfect for injecting trendy, meme-style text graphics directly into their platforms with zero rendering overhead.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/brat4":{"get":{"tags":["Create"],"summary":"Create brat4","description":"This endpoint renders text into the iconic, highly recognizable 'Brat' style image aesthetic. By securely proxying the raw text query to an external rendering service, it rapidly returns the generated graphic as a raw PNG buffer. The integrated caching mechanism (ETag) intelligently avoids regenerating identical requests, significantly improving response times and minimizing external API usage. Content creators and social media application developers will find this tool perfect for injecting trendy, meme-style text graphics directly into their platforms with zero rendering overhead.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/compress":{"all":{"tags":["Create"],"summary":"Compress Image","description":"The image file to compress.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"image","in":"query","required":false,"schema":{"type":"string","example":"https://i.pinimg.com/736x/0b/9f/0a/0b9f0a92a598e6c22629004c1027d23f.jpg"}}],"requestBody":{"required":false,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"image":{"type":"string","format":"binary"}}}}}},"x-tier":"free"}},"/create/convphoto":{"all":{"tags":["Create"],"summary":"Convert Photo to Cartoon (ImgEdit)","description":"The specific style.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"image","in":"query","required":false,"schema":{"type":"string","format":"url","example":"https://i.pinimg.com/736x/0b/9f/0a/0b9f0a92a598e6c22629004c1027d23f.jpg"}},{"name":"template","in":"query","required":true,"schema":{"type":"string","enum":["sketch_v2","anime"],"example":"sketch_v2"}},{"name":"style","in":"query","required":true,"schema":{"type":"string","example":"manga_sketch"}}],"requestBody":{"required":false,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"image":{"type":"string","format":"binary"},"template":{"type":"string"},"style":{"type":"string"}}}}}},"x-tier":"free"}},"/create/faceswap":{"all":{"tags":["Create"],"summary":"Face Swap (ImgEdit)","description":"The face image file.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"image1","in":"query","required":false,"schema":{"type":"string","format":"url","example":"https://files.catbox.moe/5cr45d.png"}},{"name":"image2","in":"query","required":false,"schema":{"type":"string","format":"url","example":"https://files.catbox.moe/1ait9s.jpg"}}],"requestBody":{"required":false,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"image1":{"type":"string","format":"binary"},"image2":{"type":"string","format":"binary"}}}}}},"x-tier":"free"}},"/create/fake-story":{"get":{"tags":["Create"],"summary":"Create fake-story","description":"This endpoint dynamically generates a customized image asset based on the provided input parameters. It securely proxies the generation request to a dedicated external service, efficiently handling the resulting binary data stream. Integrated ETag caching ensures optimal performance by bypassing redundant rendering for identical queries. Developers can seamlessly integrate this robust tool to enhance visual engagement and provide dynamic graphical content within their applications, all without the overhead of complex client-side image processing.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}},{"name":"caption","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}},{"name":"profile","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/fake-tweet":{"get":{"tags":["Create"],"summary":"Create fake-tweet","description":"This endpoint dynamically generates a customized image asset based on the provided input parameters. It securely proxies the generation request to a dedicated external service, efficiently handling the resulting binary data stream. Integrated ETag caching ensures optimal performance by bypassing redundant rendering for identical queries. Developers can seamlessly integrate this robust tool to enhance visual engagement and provide dynamic graphical content within their applications, all without the overhead of complex client-side image processing.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"username","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}},{"name":"fullname","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}},{"name":"profile","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}},{"name":"comment","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/image2jpg":{"all":{"tags":["Create"],"summary":"Convert Image to JPG","description":"The image file to convert to JPG.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"image","in":"query","required":false,"schema":{"type":"string","example":"https://i.pinimg.com/736x/0b/9f/0a/0b9f0a92a598e6c22629004c1027d23f.jpg"}}],"requestBody":{"required":false,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"image":{"type":"string","format":"binary"}}}}}},"x-tier":"free"}},"/create/image2png":{"all":{"tags":["Create"],"summary":"Convert Image to PNG","description":"The image file to convert to PNG.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"image","in":"query","required":false,"schema":{"type":"string","example":"https://i.pinimg.com/736x/0b/9f/0a/0b9f0a92a598e6c22629004c1027d23f.jpg"}}],"requestBody":{"required":false,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"image":{"type":"string","format":"binary"}}}}}},"x-tier":"free"}},"/create/iqc":{"get":{"tags":["Create"],"summary":"Create iqc","description":"This endpoint generates specialized custom quotes specifically tailored for interactive or specific use cases based on a provided text query. It acts as a reliable proxy to an external generative service, efficiently streaming the resulting PNG buffer directly to the client. By utilizing ETag caching based on the input text, it ensures rapid delivery for repeated identical requests. This is particularly useful for bot developers seeking to integrate dynamic, visually appealing quote generation features without maintaining complex client-side rendering engines.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/meme":{"all":{"tags":["Create"],"summary":"Create meme","description":"This endpoint enables the dynamic generation of classic top-and-bottom text memes. By supplying an image buffer alongside text parameters, the system processes the raw image, intelligently manages WebP conversion if necessary, and overlays the custom text utilizing predefined meme styling rules. The final composited meme is then returned directly as a JPEG binary stream. This functionality is ideal for applications seeking to integrate seamless, on-the-fly meme creation using user-uploaded or dynamically sourced images with minimal latency.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/image.jpg"}},{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/meme2":{"all":{"tags":["Create"],"summary":"Create meme2","description":"This endpoint provides an alternative meme generation method utilizing the external memegen.link API. It requires an image URL and up to two text parameters to create a custom meme. By securely proxying the request to the external provider, it retrieves the generated graphic and directly streams the resulting JPEG buffer back to the user with appropriate caching headers. Developers can utilize this streamlined service for effortless, reliable meme creation without needing to manage heavy, complex client-side image processing or overlay logic.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":false,"schema":{"type":"string","example":"Teks untuk gambar"}},{"name":"text","in":"query","required":false,"schema":{"type":"string","example":"Teks untuk gambar"}},{"name":"text2","in":"query","required":false,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/nulis/{mode}":{"all":{"tags":["Create"],"summary":"Create nulis/:mode","description":"This endpoint dynamically generates realistic handwriting images on notebook or folio paper based on a provided text query. It validates the requested writing mode (such as 'nuliskiri' or 'foliokanan') and ensures the text does not exceed character limits before securely proxying the data to an external generation service. The resulting JPEG image, closely resembling actual handwritten notes, is returned inline with ETag caching. This feature is particularly useful for educational bots or novelty applications seeking to automate the creation of realistic handwritten assignments.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"mode","in":"path","required":true,"schema":{"type":"string","enum":["nuliskiri","nuliskanan","foliokiri","foliokanan"],"example":"nuliskiri"}},{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Catatan hari ini"}}],"x-tier":"free"}},"/create/nulis2/{mode}":{"all":{"tags":["Create"],"summary":"Create nulis2/:mode (Fallback)","description":"This robust fallback endpoint provides native, server-side handwriting generation utilizing the '@napi-rs/canvas' library. It seamlessly parses the input text, applies the custom 'Indie Flower' font, and algorithmically calculates precise coordinates, line heights, and word wrapping to accurately render text onto predefined background templates (folio or standard notebook). By generating the PNG buffer entirely in-house without relying on external services, developers are guaranteed a reliable, high-performance, and fully customizable handwriting simulation ideal for offline-capable or heavily scaled applications.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"mode","in":"path","required":true,"schema":{"type":"string","enum":["nuliskiri","nuliskanan","foliokiri","foliokanan"],"example":"nuliskiri"}},{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Catatan hari ini"}}],"x-tier":"free"}},"/create/qc":{"all":{"tags":["Create"],"summary":"Create qc","description":"This endpoint dynamically generates a custom 'quote' image (QC) formatted specifically for chat applications. It accepts input parameters defining the message, author, and styling, securely proxying the request to a dedicated generation API. Implementing strict ETag-based caching reduces redundant processing and saves bandwidth by returning HTTP 304 for unchanged inputs. Developers can utilize this endpoint to create beautiful, shareable chat quote bubbles instantly, complete with customizable avatars and background colors seamlessly returned as inline PNG buffers.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/qc2":{"all":{"tags":["Create"],"summary":"Create qc2","description":"This endpoint dynamically generates a custom 'quote' image (QC) formatted specifically for chat applications. It accepts input parameters defining the message, author, and styling, securely proxying the request to a dedicated generation API. Implementing strict ETag-based caching reduces redundant processing and saves bandwidth by returning HTTP 304 for unchanged inputs. Developers can utilize this endpoint to create beautiful, shareable chat quote bubbles instantly, complete with customizable avatars and background colors seamlessly returned as inline PNG buffers.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/qc3":{"all":{"tags":["Create"],"summary":"Create qc3","description":"This endpoint dynamically generates a custom 'quote' image (QC) formatted specifically for chat applications. It accepts input parameters defining the message, author, and styling, securely proxying the request to a dedicated generation API. Implementing strict ETag-based caching reduces redundant processing and saves bandwidth by returning HTTP 304 for unchanged inputs. Developers can utilize this endpoint to create beautiful, shareable chat quote bubbles instantly, complete with customizable avatars and background colors seamlessly returned as inline PNG buffers.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/removebg":{"all":{"tags":["Create"],"summary":"Remove Background","description":"The image file to remove background from.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"image","in":"query","required":false,"schema":{"type":"string","example":"https://i.pinimg.com/736x/0b/9f/0a/0b9f0a92a598e6c22629004c1027d23f.jpg"}}],"requestBody":{"required":false,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"image":{"type":"string","format":"binary"}}}}}},"x-tier":"free"}},"/create/skin-tone":{"all":{"tags":["Create"],"summary":"Create skin-tone","description":"This endpoint provides an advanced image processing capability specifically tuned to detect and dynamically alter skin tones in anime-style illustrations. Leveraging intricate pixel scanning via Jimp, it calculates exact HSV values and isolates skin regions using a calculated edge-preserving mask blur. It then smoothly applies the desired predefined style palette—such as 'genshin', 'darkblack', or 'pale'—using LAB color space conversions to ensure realistic lighting and contrast adjustments. Developers can use this sophisticated endpoint to programmatically customize character appearances in art communities or character creator tools.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/image.jpg"}},{"name":"style","in":"query","required":false,"schema":{"type":"string","example":"genshin"}}],"x-tier":"premium"}},"/create/skin-tone2":{"all":{"tags":["Create"],"summary":"Create skin-tone2","description":"This endpoint elevates anime-style skin tone modification by integrating TensorFlow-powered body segmentation via MediaPipe alongside color space manipulations. By leveraging a neural network for precise character masking in addition to traditional HSV filtering, it reliably targets only the relevant skin areas, dramatically reducing color bleed into clothing or backgrounds. It supports multiple stylistic presets and directly returns a modified JPEG buffer. This API is indispensable for developers requiring highly accurate, AI-assisted image coloration capabilities in premium tier applications, such as advanced avatar generation platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/image.jpg"}},{"name":"style","in":"query","required":false,"schema":{"type":"string","example":"nagatoro"}}],"x-tier":"premium"}},"/create/triggered":{"all":{"tags":["Create"],"summary":"Create triggered","description":"This endpoint generates the widely recognized 'Triggered' animated or stylistic overlay effect based on a provided avatar or image URL. By cleanly interfacing with the Some-Random-API canvas service, it proxies the generation process and pipes the resulting image data back to the user. This simple yet highly engaging API is exceptionally useful for Discord bots, chat applications, and social community platforms seeking to provide users with instant, humorous visual reactions derived dynamically from their profile pictures.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/image.jpg"}}],"x-tier":"free"}},"/create/ttp":{"get":{"tags":["Create"],"summary":"Create ttp","description":"This endpoint converts plain text queries into expressive, stylized text-to-picture (TTP) PNG images. It efficiently routes requests to an external generation provider and seamlessly handles the binary image stream back to the user. With robust caching utilizing SHA1-hashed ETags based on the input text, it dramatically enhances performance for duplicate requests. This capability is exceptionally valuable for messaging bots and chat platforms that require quick, lightweight, and visually distinct text stickers to enhance user engagement and conversation aesthetics.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/ttp2":{"get":{"tags":["Create"],"summary":"Create ttp2","description":"This endpoint converts plain text queries into expressive, stylized text-to-picture (TTP) PNG images. It efficiently routes requests to an external generation provider and seamlessly handles the binary image stream back to the user. With robust caching utilizing SHA1-hashed ETags based on the input text, it dramatically enhances performance for duplicate requests. This capability is exceptionally valuable for messaging bots and chat platforms that require quick, lightweight, and visually distinct text stickers to enhance user engagement and conversation aesthetics.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/ttp3":{"get":{"tags":["Create"],"summary":"Create ttp3","description":"This endpoint converts plain text queries into expressive, stylized text-to-picture (TTP) PNG images. It efficiently routes requests to an external generation provider and seamlessly handles the binary image stream back to the user. With robust caching utilizing SHA1-hashed ETags based on the input text, it dramatically enhances performance for duplicate requests. This capability is exceptionally valuable for messaging bots and chat platforms that require quick, lightweight, and visually distinct text stickers to enhance user engagement and conversation aesthetics.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Teks untuk gambar"}}],"x-tier":"free"}},"/create/upscale":{"all":{"tags":["Create"],"summary":"Upscale Image","description":"The upscale factor (2 or 4). Defaults to 2.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"image","in":"query","required":false,"schema":{"type":"string","example":"https://i.pinimg.com/736x/0b/9f/0a/0b9f0a92a598e6c22629004c1027d23f.jpg"}},{"name":"scale","in":"query","required":false,"schema":{"type":"integer","enum":[2,4],"default":2}}],"requestBody":{"required":false,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"image":{"type":"string","format":"binary"},"scale":{"type":"integer","enum":[2,4],"default":2}}}}}},"x-tier":"free"}},"/create/wasted":{"all":{"tags":["Create"],"summary":"Create wasted","description":"This endpoint applies the iconic 'Wasted' visual effect popularized by gaming culture to any provided image. It accepts an image buffer, performs format validation (including automatic WebP to JPEG conversion), and utilizes a specialized image processing function to seamlessly overlay the 'Wasted' graphic. The processed JPEG image is then returned inline, making this API perfect for entertainment applications or social platforms looking to add humorous, automated gaming-style photo filters directly to user-generated content.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/image.jpg"}}],"x-tier":"free"}},"/download/aio":{"get":{"tags":["Download"],"summary":"Download aio","description":"This endpoint provides an all-in-one downloader functionality utilizing an internal scraping library. By accepting a valid URL, it automatically detects the target platform and attempts to extract downloadable media content. The result is returned as structured JSON containing media links and relevant metadata. This is highly beneficial for developers building versatile utility bots or content aggregation tools, eliminating the need to maintain separate scrapers for various social media and video sharing platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/video/123"}}],"x-tier":"free"}},"/download/aio2":{"get":{"tags":["Download"],"summary":"Download aio 2","description":"This secondary all-in-one downloader endpoint leverages an external generative API (eepy.today) to extract media from a wide range of unsupported or strictly protected platforms. It accepts a target URL via POST and returns the scraped media metadata in a structured JSON response. Developers can use this as a robust fallback mechanism when the primary internal AIO scraper fails, ensuring maximum compatibility and reliability for comprehensive media downloading services within their applications.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://example.com/video/123"}}],"x-tier":"free"}},"/download/douyin":{"get":{"tags":["Download"],"summary":"Download douyin","description":"This highly specialized endpoint enables the extraction and downloading of media from Douyin (Chinese TikTok). Utilizing a complex scraping mechanism that bypasses token validation, calculates specific hashes, and handles dynamic cookies, it successfully retrieves high-quality video formats without watermarks. The response includes comprehensive metadata alongside the video streamed directly as a Base64-encoded string. This is essential for applications looking to bridge cross-region content barriers and automate the archiving of popular Douyin videos securely and reliably.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://douyin.com/video/123"}}],"x-tier":"free"}},"/download/facebook":{"get":{"tags":["Download"],"summary":"Download facebook","description":"This endpoint offers a streamlined solution for downloading public media content directly from Facebook. By supplying a valid Facebook video or post URL, the internal scraper parses the page and extracts the direct download links for the media, typically in both SD and HD qualities if available. This functionality is crucial for developers integrating social media archiving, offline viewing features, or versatile media management bots without needing complex API authentications.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://facebook.com/video/123"}}],"x-tier":"free"}},"/download/gdrive":{"get":{"tags":["Download"],"summary":"Download gdrive","description":"This endpoint facilitates the extraction of direct download links from publicly shared Google Drive files. By scraping the provided Drive URL, it elegantly bypasses the standard Drive viewer interface, retrieves the actual file name, and constructs a direct, automatable download link using the unique file ID. This tool is highly advantageous for developers building file management utilities or download managers who need to programmatically fetch assets hosted on Google Drive without requiring OAuth integration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://drive.google.com/file/d/12345/view"}}],"x-tier":"free"}},"/download/github":{"get":{"tags":["Download"],"summary":"Download github","description":"This versatile endpoint parses and fetches metadata from various GitHub URLs, including repositories, individual files, and gists. Utilizing the GitHub REST API, it intelligently identifies the URL type and retrieves comprehensive data such as repository statistics, raw file contents (decoded from Base64), and gist structures. This endpoint provides developers with an essential utility to programmatically inspect codebases, download raw file assets, and integrate GitHub repository insights directly into their applications or developer tools.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com/user/repo"}}],"x-tier":"free"},"post":{"tags":["Download"],"summary":"Download github","description":"This versatile endpoint parses and fetches metadata from various GitHub URLs, including repositories, individual files, and gists. Utilizing the GitHub REST API, it intelligently identifies the URL type and retrieves comprehensive data such as repository statistics, raw file contents (decoded from Base64), and gist structures. This endpoint provides developers with an essential utility to programmatically inspect codebases, download raw file assets, and integrate GitHub repository insights directly into their applications or developer tools.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"url":"https://github.com/user/repo"},"properties":{"url":{"type":"string"}},"required":["url"]}}}},"x-tier":"free"}},"/download/instagram":{"get":{"tags":["Download"],"summary":"Download instagram","description":"This endpoint provides robust media downloading capabilities for Instagram content. By processing a valid Instagram post or reel URL, it utilizes an internal scraper to securely bypass generic access restrictions and extracts the highest available quality media links (videos or images). It seamlessly formats and returns the media data in a structured JSON response. This is highly recommended for developers needing to build social media aggregators or personal archive tools with reliable Instagram integration without relying on complex, heavily rate-limited official APIs.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://instagram.com/p/123"}}],"x-tier":"free"}},"/download/instagram2":{"get":{"tags":["Download"],"summary":"Instagram Native + Fallback Combo Downloader","description":"Multi-layered Instagram Downloader using GraphQL, FastDL, DownloadGram, and Direct Fetch to bypass limits.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://www.instagram.com/p/DDXxfY8TX5u/"}}],"x-tier":"free"}},"/download/instagram3":{"get":{"tags":["Download"],"summary":"Download instagram 3","description":"This endpoint offers a powerful tertiary method for downloading Instagram media by leveraging an alternative API provider (SaveVid).","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://instagram.com/p/123"}}],"x-tier":"free"}},"/download/mediafire":{"get":{"tags":["Download"],"summary":"Download mediafire","description":"This endpoint simplifies the process of retrieving direct download links from MediaFire file hosting pages. By scraping the provided MediaFire URL, it navigates the site structure to extract the actual underlying file URI, bypassing the standard user-facing download landing page. The service automatically returns the direct link alongside file metadata if available. This functionality is ideal for developers creating specialized download managers or automated file-fetching utilities that require uninterrupted access to user-uploaded MediaFire assets without manual intervention.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://www.mediafire.com/file/12345/filename/file"}}],"x-tier":"free"}},"/download/meganz":{"get":{"tags":["Download"],"summary":"Download meganz","description":"This endpoint provides a specialized solution for downloading files hosted on MEGA.nz. Utilizing a custom scraper built to interact with MEGA cloud unique encryption and URL structure, it successfully retrieves the direct streaming or downloading link for the requested asset. It bypasses the standard web interface to return a clean JSON payload containing the accessible media URI. Developers can seamlessly integrate this endpoint to automate secure file fetching from MEGA, making it an essential tool for comprehensive cloud storage aggregators and bot utilities.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://mega.nz/file/123#456"}}],"x-tier":"free"}},"/download/nekopoi":{"get":{"tags":["Download"],"summary":"Nekopoi detail","description":"This endpoint fetches detailed information and media links for specific entries on the Nekopoi platform. By providing a valid ID, it queries the internal library to retrieve comprehensive metadata, including titles, descriptions, and available download or streaming links. This premium-restricted API is tailored for specialized content aggregators and automated bots operating within niche anime communities, ensuring reliable and structured access to detailed media profiles.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"premium"}},"/download/nekopoi/series":{"get":{"tags":["Download"],"summary":"Nekopoi series","description":"This endpoint retrieves complete series data from the Nekopoi platform. Utilizing a specific series ID, it extracts comprehensive information about the entire series, including episodes, related media, and overall metadata. Protected by premium access controls, this endpoint is an invaluable tool for developers building specialized cataloging applications or niche streaming bots, allowing them to programmatically index and present entire series collections efficiently and reliably.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"premium"}},"/download/nhentai":{"get":{"tags":["Download"],"summary":"Download nhentai","description":"This endpoint retrieves highly detailed metadata and image links for specific doujinshi galleries hosted on nHentai. By providing a valid gallery ID, the service utilizes a dedicated scraper to bypass standard viewing restrictions and parses the site structure. It returns a comprehensive JSON object containing high-resolution image links, tags, upload dates, and scanlator information. As a premium-restricted feature, it allows developers building niche manga readers or archiving bots to programmatically fetch complete gallery details reliably and efficiently.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"premium"}},"/download/pinterest":{"get":{"tags":["Download"],"summary":"Download pinterest","description":"This endpoint provides reliable media downloading capabilities tailored specifically for Pinterest. Accepting a valid Pinterest pin or video URL, it interacts with an internal scraping mechanism to extract the direct source link of the image or video asset. It bypasses the standard UI overlays and returns the direct media URI within a structured JSON response. Developers can integrate this endpoint to effortlessly enhance content aggregation boards, social media archiving tools, and image downloader applications with robust Pinterest compatibility.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://id.pinterest.com/pin/123456789/"}}],"x-tier":"free"}},"/download/rule34video":{"get":{"tags":["Download"],"summary":"Download rule34video","description":"This specialized endpoint extracts detailed metadata and direct streaming links from the Rule34Video platform. By accepting a valid video URL, it deploys a custom scraper designed to navigate the platform layout and bypass basic viewing constraints. The resulting JSON response contains comprehensive video details, including titles, durations, and direct media URIs. As a premium-restricted API, it enables developers within niche communities to automate the indexing and retrieval of adult animated content securely and without maintaining complex local scraping logic.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"premium"}},"/download/savefrom":{"get":{"tags":["Download"],"summary":"Download from savefrom","description":"This highly versatile endpoint leverages the renowned SaveFrom.net architecture to extract download links from a multitude of popular video-sharing platforms. By supplying a target media URL, it mimics a browser request, parses the standard SaveFrom response, and retrieves all available video qualities and formats. The extracted download links are neatly packaged in a JSON response. Developers can utilize this generic downloader as a powerful, multi-platform fallback or primary scraping tool for building comprehensive video downloading bots and utilities.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://www.youtube.com/watch?v=dQw4w9WgXcQ"}}],"x-tier":"free"}},"/download/seegore":{"get":{"tags":["Download"],"summary":"Download seegore","description":"This endpoint provides robust scraping capabilities for the SeeGore platform, extracting detailed metadata and direct video links from individual posts. Utilizing Cheerio to parse the HTML structure, it reliably retrieves the post title, author, upload date, engagement metrics (views, comments, ratings), and the raw MP4 video source URI. This service is designed for specialized content archiving and bot integrations, allowing developers to programmatically fetch detailed statistics and media files from the platform securely and efficiently.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/download/snackvideo":{"all":{"tags":["Download"],"summary":"snack video","description":"This API endpoint allows you to retrieve detailed information and the direct download link for a video hosted on Snack Video. By providing the Snack Video URL, the API scrapes the necessary data, including the video's title, description, thumbnail, upload date, direct video URL, duration, and interaction statistics (views, likes, shares). It also extracts information about the video's creator, such as their name, profile URL, and bio. This endpoint is designed for developers who need to integrate Snack Video content into their applications or services, offering a comprehensive data payload for each video.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://s.snackvideo.com/p/dwlMd51U"}}],"x-tier":"free"}},"/download/soundcloud":{"get":{"tags":["Download"],"summary":"Download soundcloud","description":"This endpoint facilitates the extraction of high-quality audio streams and track metadata from SoundCloud. By processing a valid SoundCloud track URL, it interfaces with a dedicated scraper to bypass standard player restrictions and retrieves the direct audio URI along with details such as track title, artist, and cover art. This is highly useful for developers building music aggregator applications, custom audio players, or archiving tools that require reliable and programmatic access to SoundCloud extensive audio catalog without complex API authentication.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://soundcloud.com/artist/track-name"}}],"x-tier":"free"}},"/download/spotify":{"get":{"tags":["Download"],"summary":"Download spotify","description":"This endpoint provides a robust solution for extracting metadata and downloading tracks directly from Spotify. Accepting a valid Spotify track URL, it utilizes specialized scraping logic to securely bypass platform barriers and fetch the direct audio streaming link alongside comprehensive track details like artist, album, and release date. This functionality is essential for developers integrating seamless music downloading features into utility bots or personal media archiving platforms, offering users a quick and reliable way to access Spotify tracks.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://open.spotify.com/track/1234567890"}}],"x-tier":"free"}},"/download/tiktok":{"get":{"tags":["Download"],"summary":"Download tiktok","description":"This endpoint serves as the primary TikTok media downloader, leveraging an internal scraping library to extract high-quality, watermark-free videos and metadata. By accepting a standard TikTok video URL, it rapidly parses the platform data structures and returns the direct video URI within a clean JSON response. This reliable tool is perfect for developers building social media archiving utilities or content reposting bots that require immediate, unimpeded access to trending TikTok media.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://www.tiktok.com/@username/video/1234567890"}}],"x-tier":"free"}},"/download/tiktok2":{"get":{"tags":["Download"],"summary":"Download tiktok2","description":"This secondary TikTok downloader endpoint offers an alternative scraping mechanism through a dedicated external API provider (BK9). It accepts a TikTok URL and securely proxies the request to retrieve both video and audio assets, typically without watermarks. By returning the comprehensive media URIs in a structured format, it acts as an invaluable fallback for developers aiming to maintain high availability in their media download applications, ensuring consistent service even if primary internal scraping methods are temporarily disrupted.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://www.tiktok.com/@username/video/1234567890"}}],"x-tier":"free"}},"/download/tiktok3":{"get":{"tags":["Download"],"summary":"Download tiktok3","description":"This supplementary TikTok downloader endpoint provides a third, highly resilient method for extracting TikTok media utilizing another distinct external service (eepy.today). Functioning via a POST request, it securely transmits the target URL and returns a detailed JSON response encompassing various available video formats and audio tracks. This API is strategically implemented as a final fallback layer, guaranteeing maximum download success rates for developers managing high-traffic, versatile social media aggregation and archiving platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://www.tiktok.com/@username/video/1234567890"}}],"x-tier":"free"}},"/download/x":{"get":{"tags":["Download"],"summary":"Download x (twitter)","description":"This endpoint provides comprehensive media extraction capabilities for X (formerly Twitter). By accepting a valid post URL, it utilizes a custom scraper to parse the tweet and retrieve direct download links for associated media, including images, videos, and GIFs, often in multiple resolutions. The neatly formatted JSON response ensures developers can easily integrate Twitter media archiving or reposting functionalities into their applications, utility bots, or news aggregators with high reliability and zero rate-limiting from official APIs.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://x.com/username/status/1234567890"}}],"x-tier":"free"}},"/download/youtube":{"get":{"tags":["Download"],"summary":"Download youtube","description":"This versatile endpoint handles media extraction from YouTube, providing direct download links for both video (MP4) and audio (MP3) formats. Utilizing a specialized internal library to parse YouTube complex video structure, it bypasses standard player interfaces to deliver high-quality media URIs based on the provided video URL. This powerful tool is heavily relied upon by developers constructing custom media players, comprehensive download managers, or Discord music bots that require seamless and unrestricted access to YouTube vast content library.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://www.youtube.com/watch?v=dQw4w9WgXcQ"}},{"name":"format","in":"query","required":false,"schema":{"type":"string","example":"mp3"}}],"x-tier":"free"}},"/education/brainly":{"get":{"tags":["Education"],"summary":"Brainly Search","description":"This endpoint serves as a powerful educational tool by interfacing with the Brainly platform to fetch crowdsourced questions and verified answers. Given an academic query, it utilizes specialized scraping logic to securely bypass standard viewing restrictions and parses the resulting discussion threads. The endpoint returns a structured JSON payload containing the most relevant questions along with their highest-rated answers and detailed explanations. This is invaluable for developers creating dedicated homework helper bots, study companion applications, or community-driven educational platforms requiring reliable, programmatic access to extensive academic problem-solving databases.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"soal matematika"}}],"x-tier":"free"}},"/education/street-map":{"get":{"tags":["Education"],"summary":"Street Map Search","description":"This endpoint offers robust geographical lookup functionalities by leveraging the OpenStreetMap (OSM) architecture. By processing a specific location query, such as a city name, address, or notable landmark, it rapidly queries the open-source mapping database to retrieve precise geographic coordinates, bounding boxes, and detailed localized metadata. The resulting JSON response provides developers with the essential spatial data needed to integrate powerful mapping, routing, or location-based services into their applications without relying on proprietary, heavily rate-limited commercial map APIs.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Jakarta"}}],"x-tier":"free"}},"/education/wikipedia":{"get":{"tags":["Education"],"summary":"Wikipedia Search","description":"This endpoint provides comprehensive search capabilities across the vast Wikipedia knowledge base. By accepting a specific search query, it intelligently queries the Wikipedia API to retrieve detailed summaries, introductory paragraphs, and structured metadata for the requested topic. It efficiently parses and returns this wealth of information in a clean, easily consumable JSON format. This functionality is an essential resource for developers building educational utility bots, automated research assistants, or general-purpose knowledge aggregation applications, enabling instant programmatic access to the world largest online encyclopedia directly within their platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"Indonesia"}}],"x-tier":"free"}},"/ephoto360/1917":{"get":{"tags":["ephoto360"],"summary":"1917 Effect","description":"Generate an ephoto360 image with the 1917 effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/anonymous-neon":{"get":{"tags":["ephoto360"],"summary":"Anonymous Neon Effect","description":"Generate an ephoto360 image with the Anonymous Neon effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/avengers":{"get":{"tags":["ephoto360"],"summary":"Avengers Effect","description":"Generate an ephoto360 image with the Avengers effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/ballon":{"get":{"tags":["ephoto360"],"summary":"Ballon Effect","description":"Generate an ephoto360 image with the Ballon effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/black-and-white":{"get":{"tags":["ephoto360"],"summary":"Black And White Effect","description":"Generate an ephoto360 image with the Black And White effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/blackpink":{"get":{"tags":["ephoto360"],"summary":"Blackpink Effect","description":"Generate an ephoto360 image with the Blackpink effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/blackpink-logo":{"get":{"tags":["ephoto360"],"summary":"Blackpink Logo Effect","description":"Generate an ephoto360 image with the Blackpink Logo effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/bokeh-style":{"get":{"tags":["ephoto360"],"summary":"Bokeh Style Effect","description":"Generate an ephoto360 image with the Bokeh Style effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/captain-america":{"get":{"tags":["ephoto360"],"summary":"Captain America Effect","description":"Generate an ephoto360 image with the Captain America effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/chrome":{"get":{"tags":["ephoto360"],"summary":"Chrome Effect","description":"Generate an ephoto360 image with the Chrome effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/cloud":{"get":{"tags":["ephoto360"],"summary":"Cloud Effect","description":"Generate an ephoto360 image with the Cloud effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/clouds":{"get":{"tags":["ephoto360"],"summary":"Clouds Effect","description":"Generate an ephoto360 image with the Clouds effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/color":{"get":{"tags":["ephoto360"],"summary":"Color Effect","description":"Generate an ephoto360 image with the Color effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/colorfull":{"get":{"tags":["ephoto360"],"summary":"Colorfull Effect","description":"Generate an ephoto360 image with the Colorfull effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/colorfull-glowing":{"get":{"tags":["ephoto360"],"summary":"Colorfull Glowing Effect","description":"Generate an ephoto360 image with the Colorfull Glowing effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/colorfull-neon":{"get":{"tags":["ephoto360"],"summary":"Colorfull Neon Effect","description":"Generate an ephoto360 image with the Colorfull Neon effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/colours":{"get":{"tags":["ephoto360"],"summary":"Colours Effect","description":"Generate an ephoto360 image with the Colours effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/deadpool":{"get":{"tags":["ephoto360"],"summary":"Deadpool Effect","description":"Generate an ephoto360 image with the Deadpool effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/flares":{"get":{"tags":["ephoto360"],"summary":"Flares Effect","description":"Generate an ephoto360 image with the Flares effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/futuristic":{"get":{"tags":["ephoto360"],"summary":"Futuristic Effect","description":"Generate an ephoto360 image with the Futuristic effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/galaxy":{"get":{"tags":["ephoto360"],"summary":"Galaxy Effect","description":"Generate an ephoto360 image with the Galaxy effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/galaxy2":{"get":{"tags":["ephoto360"],"summary":"Galaxy2 Effect","description":"Generate an ephoto360 image with the Galaxy2 effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/glass":{"get":{"tags":["ephoto360"],"summary":"Glass Effect","description":"Generate an ephoto360 image with the Glass effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/glass2":{"get":{"tags":["ephoto360"],"summary":"Glass2 Effect","description":"Generate an ephoto360 image with the Glass2 effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/glitch":{"get":{"tags":["ephoto360"],"summary":"Glitch Effect","description":"Generate an ephoto360 image with the Glitch effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/glitter":{"get":{"tags":["ephoto360"],"summary":"Glitter Effect","description":"Generate an ephoto360 image with the Glitter effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/glossy-silver":{"get":{"tags":["ephoto360"],"summary":"Glossy Silver Effect","description":"Generate an ephoto360 image with the Glossy Silver effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/glow-effect":{"get":{"tags":["ephoto360"],"summary":"Glow Effect Effect","description":"Generate an ephoto360 image with the Glow Effect effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/glowing-text":{"get":{"tags":["ephoto360"],"summary":"Glowing Text Effect","description":"Generate an ephoto360 image with the Glowing Text effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/graffiti":{"get":{"tags":["ephoto360"],"summary":"Graffiti Effect","description":"Generate an ephoto360 image with the Graffiti effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/letters":{"get":{"tags":["ephoto360"],"summary":"Letters Effect","description":"Generate an ephoto360 image with the Letters effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/light-effect":{"get":{"tags":["ephoto360"],"summary":"Light Effect Effect","description":"Generate an ephoto360 image with the Light Effect effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/light-neon":{"get":{"tags":["ephoto360"],"summary":"Light Neon Effect","description":"Generate an ephoto360 image with the Light Neon effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/logo":{"get":{"tags":["ephoto360"],"summary":"Logo Effect","description":"Generate an ephoto360 image with the Logo effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/logo-company":{"get":{"tags":["ephoto360"],"summary":"Logo Company Effect","description":"Generate an ephoto360 image with the Logo Company effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/logo-company2":{"get":{"tags":["ephoto360"],"summary":"Logo Company2 Effect","description":"Generate an ephoto360 image with the Logo Company2 effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/luxury":{"get":{"tags":["ephoto360"],"summary":"Luxury Effect","description":"Generate an ephoto360 image with the Luxury effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/marvel":{"get":{"tags":["ephoto360"],"summary":"Marvel Effect","description":"Generate an ephoto360 image with the Marvel effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/matrix":{"get":{"tags":["ephoto360"],"summary":"Matrix Effect","description":"Generate an ephoto360 image with the Matrix effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/metal":{"get":{"tags":["ephoto360"],"summary":"Metal Effect","description":"Generate an ephoto360 image with the Metal effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/multicolor":{"get":{"tags":["ephoto360"],"summary":"Multicolor Effect","description":"Generate an ephoto360 image with the Multicolor effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/naruto":{"get":{"tags":["ephoto360"],"summary":"Naruto Effect","description":"Generate an ephoto360 image with the Naruto effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/neon":{"get":{"tags":["ephoto360"],"summary":"Neon Effect","description":"Generate an ephoto360 image with the Neon effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/neon-galayx":{"get":{"tags":["ephoto360"],"summary":"Neon Galayx Effect","description":"Generate an ephoto360 image with the Neon Galayx effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/neon-glitch":{"get":{"tags":["ephoto360"],"summary":"Neon Glitch Effect","description":"Generate an ephoto360 image with the Neon Glitch effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/nigeria":{"get":{"tags":["ephoto360"],"summary":"Nigeria Effect","description":"Generate an ephoto360 image with the Nigeria effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/night":{"get":{"tags":["ephoto360"],"summary":"Night Effect","description":"Generate an ephoto360 image with the Night effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/pixel-glitch":{"get":{"tags":["ephoto360"],"summary":"Pixel Glitch Effect","description":"Generate an ephoto360 image with the Pixel Glitch effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/plasma":{"get":{"tags":["ephoto360"],"summary":"Plasma Effect","description":"Generate an ephoto360 image with the Plasma effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/pornhub":{"get":{"tags":["ephoto360"],"summary":"Pornhub Effect","description":"Generate an ephoto360 image with the Pornhub effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/purple":{"get":{"tags":["ephoto360"],"summary":"Purple Effect","description":"Generate an ephoto360 image with the Purple effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/space":{"get":{"tags":["ephoto360"],"summary":"Space Effect","description":"Generate an ephoto360 image with the Space effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/sunset":{"get":{"tags":["ephoto360"],"summary":"Sunset Effect","description":"Generate an ephoto360 image with the Sunset effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/thor":{"get":{"tags":["ephoto360"],"summary":"Thor Effect","description":"Generate an ephoto360 image with the Thor effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/thunder":{"get":{"tags":["ephoto360"],"summary":"Thunder Effect","description":"Generate an ephoto360 image with the Thunder effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/tiktok":{"get":{"tags":["ephoto360"],"summary":"Tiktok Effect","description":"Generate an ephoto360 image with the Tiktok effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/ephoto360/typography":{"get":{"tags":["ephoto360"],"summary":"Typography Effect","description":"Generate an ephoto360 image with the Typography effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/typography-art":{"get":{"tags":["ephoto360"],"summary":"Typography Art Effect","description":"Generate an ephoto360 image with the Typography Art effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/ephoto360/vintage":{"get":{"tags":["ephoto360"],"summary":"Vintage Effect","description":"Generate an ephoto360 image with the Vintage effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"World"}}],"x-tier":"free"}},"/games/caklontong":{"get":{"tags":["Games"],"summary":"Random Game Caklontong","description":"Retrieve a random game question for Caklontong.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/family100":{"get":{"tags":["Games"],"summary":"Random Game Family100","description":"Retrieve a random game question for Family100.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/siapakahaku":{"get":{"tags":["Games"],"summary":"Random Game Siapakahaku","description":"Retrieve a random game question for Siapakahaku.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/susunkata":{"get":{"tags":["Games"],"summary":"Random Game Susunkata","description":"Retrieve a random game question for Susunkata.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/tebakbendera":{"get":{"tags":["Games"],"summary":"Random Game Tebakbendera","description":"Retrieve a random game question for Tebakbendera.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/tebakbendera2":{"get":{"tags":["Games"],"summary":"Random Game Tebakbendera2","description":"Retrieve a random game question for Tebakbendera2.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/tebakgambar":{"get":{"tags":["Games"],"summary":"Random Game Tebakgambar","description":"Retrieve a random game question for Tebakgambar.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/tebakkalimat":{"get":{"tags":["Games"],"summary":"Random Game Tebakkalimat","description":"Retrieve a random game question for Tebakkalimat.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/tebakkata":{"get":{"tags":["Games"],"summary":"Random Game Tebakkata","description":"Retrieve a random game question for Tebakkata.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/tebakkimia":{"get":{"tags":["Games"],"summary":"Random Game Tebakkimia","description":"Retrieve a random game question for Tebakkimia.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/tebaklirik":{"get":{"tags":["Games"],"summary":"Random Game Tebaklirik","description":"Retrieve a random game question for Tebaklirik.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/tebaknegara":{"get":{"tags":["Games"],"summary":"Random Game Tebaknegara","description":"Retrieve a random game question for Tebaknegara.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/games/tekateki":{"get":{"tags":["Games"],"summary":"Random Game Tekateki","description":"Retrieve a random game question for Tekateki.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/islamic/asmaul-husna":{"get":{"tags":["Islamic"],"summary":"Get Asmaul Husna","description":"Returns the complete dataset of Asmaul Husna.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/islamic/doa-harian":{"get":{"tags":["Islamic"],"summary":"Get Doa Harian","description":"Returns the complete dataset of Doa Harian.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/islamic/hadits/{kitab}":{"get":{"tags":["Islamic"],"summary":"Get Hadith by Kitab","description":"Specific hadith number to retrieve","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"kitab","in":"path","required":true,"schema":{"type":"string","example":"bukhari","enum":["bukhari","muslim","nasai","abudaud","tirmidzi","ibnumajah","malik","ahmad","darimi"]}},{"name":"number","in":"query","required":false,"schema":{"type":"integer","example":1,"cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/islamic/jadwal-sholat":{"get":{"tags":["Islamic"],"summary":"Get Prayer Times","description":"Name of the city","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"city","in":"query","required":true,"schema":{"type":"string","example":"jakarta","cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/islamic/kisah-nabi":{"get":{"tags":["Islamic"],"summary":"Get Kisah Nabi","description":"Returns the complete dataset of Kisah Nabi.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/islamic/quran":{"get":{"tags":["Islamic"],"summary":"Get Surah from Al-Quran","description":"Surah number (1 to 114)","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"number","in":"query","required":true,"schema":{"type":"integer","example":1,"cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/islamic/quran-mp3":{"get":{"tags":["Islamic"],"summary":"Get Quran Surah MP3","description":"Surah number (1 to 114)","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"number","in":"query","required":true,"schema":{"type":"integer","example":1,"cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/islamic/tahlil":{"get":{"tags":["Islamic"],"summary":"Get Tahlil","description":"Returns the complete dataset of Tahlil.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/news/gempa":{"get":{"tags":["News"],"summary":"Information about the latest earthquake","description":"Retrieves the latest earthquake information from the BMKG API.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/news/international":{"get":{"tags":["News"],"summary":"Search for international news","description":"Searches for international news articles based on a provided query.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"technology","cache":true,"cacheDuration":300}}],"x-tier":"free"}},"/news/prakiraan-cuaca":{"get":{"tags":["News"],"summary":"Get weather forecast data from BMKG","description":"City name","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"city","in":"query","required":true,"schema":{"type":"string","example":"jakarta","cache":true,"cacheDuration":300}}],"x-tier":"free"}},"/news/search":{"get":{"tags":["News"],"summary":"Search for national and international news","description":"Searches for national and international news articles based on a provided query.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"indonesia","cache":true,"cacheDuration":300}}],"x-tier":"free"}},"/other/bcvc":{"get":{"tags":["Other"],"summary":"BC.VC Shortener","description":"This specialized endpoint leverages the BC.VC URL shortener network to compress long web addresses. In addition to standard link shortening, BC.VC often integrates monetization or analytics tracking capabilities. By processing the target URL through an authenticated POST request, it retrieves the shortened link and returns it in a structured JSON payload. This tool is highly advantageous for developers seeking to implement specialized short links in their content distribution pipelines, forums, or automated marketing bots, allowing for trackable and monetized link sharing across various platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://google.com"}}],"x-tier":"free"}},"/other/cleanurl":{"get":{"tags":["Other"],"summary":"CleanURI Shortener","description":"This specific endpoint interacts securely with the CleanURI API, offering a streamlined and privacy-focused URL shortening service. By accepting a long destination URL, it performs a structured POST request to quickly generate and return a concise, clean short link. The process strictly adheres to the provider standard JSON format. It is an excellent choice for developers seeking a no-nonsense, reliable shortener to integrate into automated notification systems, clean documentation generators, or messaging bots where straightforward and unobtrusive URL compression is required.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://google.com"}}],"x-tier":"free"}},"/other/pt1":{"get":{"tags":["Other"],"summary":"1pt.co Shortener","description":"This unique endpoint integrates with the 1pt.co URL shortening service, renowned for creating extremely short and memorable links. By fetching data through their dedicated endpoint, it accurately processes the long URL and constructs the final shortened URI using the returned alias token. Delivered as a clean JSON response, this tool is highly valuable for developers needing to maximize character economy in microblogging platforms, highly constrained text messaging applications, or specialized marketing campaigns that require the absolute shortest possible web addresses.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://google.com"}}],"x-tier":"free"}},"/other/s6k":{"get":{"tags":["Other"],"summary":"S6K Shortener","description":"This modern endpoint leverages the S6K custom URL shortener service (hosted on Vercel) to compress lengthy web addresses efficiently. Operating via a structured POST request, it securely transmits the long URL and retrieves a detailed JSON payload containing the shortened link, original URL, and an explicit expiration timestamp. This additional expiration metadata makes this endpoint exceptionally useful for developers building time-sensitive applications, temporary file-sharing utilities, or promotional bots where links are strictly meant to be ephemeral and expire after a predetermined period.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://google.com"}}],"x-tier":"free"}},"/other/shorturl":{"get":{"tags":["Other"],"summary":"Shorturl.at Shortener","description":"This highly effective endpoint utilizes the Shorturl.at service to instantly compress extended web links into concise, manageable URLs. It systematically handles the URL submission process by simulating an authentic form POST request, utilizing Cheerio to scrape and extract the resulting shortened link directly from the HTML response. This resilient scraping approach ensures consistent service. Developers can confidently integrate this endpoint into link management dashboards, affiliate marketing tools, or discord utility bots to provide users with a clean, unbranded URL shortening alternative.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://google.com"}}],"x-tier":"free"}},"/other/tinyurl":{"get":{"tags":["Other"],"summary":"TinyURL Shortener","description":"This endpoint provides robust URL shortening capabilities by seamlessly integrating with the official TinyURL API. By accepting a long, cumbersome URL via a query parameter, it processes the request and securely returns a highly compact, easily shareable TinyURL link. The response is encapsulated within a clean JSON structure for immediate parsing. This essential utility is perfectly suited for developers building social media management tools, SMS notification systems, or automated chat bots where character limits and aesthetic link presentation are critical to the user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://google.com"}}],"x-tier":"free"}},"/other/vgd":{"get":{"tags":["Other"],"summary":"v.gd Shortener","description":"This straightforward endpoint utilizes the classic v.gd service to generate highly compact, minimalist short URLs. By sending a structured GET request containing the encoded long URL, it rapidly retrieves the shortened equivalent in a straightforward JSON response. The v.gd platform is known for its simplicity and reliability, making this endpoint an excellent, lightweight alternative for developers constructing fast, low-overhead utility applications, SMS gateways, or simple bot commands where immediate, no-frills URL shortening is the primary objective.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://google.com"}}],"x-tier":"free"}},"/photofunia/airline":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Airline","description":"Generates a Airline image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/arrowsigns":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Arrowsigns","description":"Generates a Arrowsigns image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text1","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/balloon":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Balloon","description":"Generates a Balloon image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/beachsign":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Beachsign","description":"Generates a Beachsign image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/bloodwriting":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Bloodwriting","description":"Generates a Bloodwriting image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/bracelet":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Bracelet","description":"Generates a Bracelet image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/christmastlist":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Christmastlist","description":"Generates a Christmastlist image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"lst","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text3","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text4","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/christmastwriting":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Christmastwriting","description":"Generates a Christmastwriting image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/cinematicket":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Cinematicket","description":"Generates a Cinematicket image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text1","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/einstein":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Einstein","description":"Generates a Einstein image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/emdroidery":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Emdroidery","description":"Generates a Emdroidery image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/foggywindow":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Foggywindow","description":"Generates a Foggywindow image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/footballplayer":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Footballplayer","description":"Generates a Footballplayer image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"number","in":"query","required":true,"schema":{"type":"string","example":"10"}}],"x-tier":"free"}},"/photofunia/fortunecookie":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Fortunecookie","description":"Generates a Fortunecookie image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/gates":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Gates","description":"Generates a Gates image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/ledroadlight":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Ledroadlight","description":"Generates a Ledroadlight image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"sign","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/lifebuoy":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Lifebuoy","description":"Generates a Lifebuoy image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text1","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/lightgraffiti":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Lightgraffiti","description":"Generates a Lightgraffiti image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/neonsign":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Neonsign","description":"Generates a Neonsign image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/neonwriting":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Neonwriting","description":"Generates a Neonwriting image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/nightmare":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Nightmare","description":"Generates a Nightmare image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/sandwriting":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Sandwriting","description":"Generates a Sandwriting image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/snowsign":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Snowsign","description":"Generates a Snowsign image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/soupletters":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Soupletters","description":"Generates a Soupletters image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/streetsign":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Streetsign","description":"Generates a Streetsign image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/surfingboard":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Surfingboard","description":"Generates a Surfingboard image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/typewrite":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Typewrite","description":"Generates a Typewrite image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/watercolour":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Watercolour","description":"Generates a Watercolour image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/waterwriting":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Waterwriting","description":"Generates a Waterwriting image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/photofunia/yacht":{"all":{"tags":["PhotoFunia"],"summary":"PhotoFunia: Yacht","description":"Generates a Yacht image effect.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello"}}],"x-tier":"free"}},"/primbon/apakah":{"get":{"tags":["Primbon"],"summary":"Random \"is it\" question","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"apakah aku bisa terbang","cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/primbon/arah-rejeki":{"get":{"tags":["Primbon"],"summary":"Fortune direction prediction based on weton","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/arti-mimpi":{"get":{"tags":["Primbon"],"summary":"Dream interpretation","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/primbon/arti-nama":{"get":{"tags":["Primbon"],"summary":"Meaning of someone name","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/primbon/bisakah":{"get":{"tags":["Primbon"],"summary":"Random \"can it\" question","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"bisakah aku terbang","cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/primbon/cekgender":{"get":{"tags":["Primbon"],"summary":"Predict gender based on name","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string","example":"Naze","cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/primbon/cekkhodam":{"get":{"tags":["Primbon"],"summary":"Check random spirit guardian","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/primbon/cekmati":{"get":{"tags":["Primbon"],"summary":"Predict age (death check) based on name","description":"Name to be checked","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string","example":"Naze","cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/primbon/ceknegara":{"get":{"tags":["Primbon"],"summary":"Predict country of origin based on name","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string","example":"Naze","cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/primbon/ceksifat":{"get":{"tags":["Primbon"],"summary":"Check good & bad traits based on name","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"name","in":"query","required":true,"schema":{"type":"string","example":"Naze","cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/primbon/hari-baik":{"get":{"tags":["Primbon"],"summary":"Calculation of good days based on birth date","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/hari-naga":{"get":{"tags":["Primbon"],"summary":"Secret of the day dragon based on birth date","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/hari-sangar":{"get":{"tags":["Primbon"],"summary":"Check sangar taliwangke days","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/hari-sial":{"get":{"tags":["Primbon"],"summary":"Check unlucky days","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/kapankah":{"get":{"tags":["Primbon"],"summary":"Random time prediction (when)","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"kapankah aku kaya","cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/primbon/kerangajaib":{"get":{"tags":["Primbon"],"summary":"Random answer from magic conch shell","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"apakah aku tampan","cache":true,"cacheDuration":3600}}],"x-tier":"free"}},"/primbon/nasib":{"get":{"tags":["Primbon"],"summary":"Fate prediction based on Javanese birthday (weton)","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/nomer-hoki":{"get":{"tags":["Primbon"],"summary":"Check lucky number","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/primbon/pekerjaan":{"get":{"tags":["Primbon"],"summary":"Career prediction based on Javanese birthday (weton)","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/penyakit":{"get":{"tags":["Primbon"],"summary":"Check potential diseases based on Javanese birthday (weton)","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/pernikahan":{"get":{"tags":["Primbon"],"summary":"Marriage anniversary date","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/ramalan-cinta":{"get":{"tags":["Primbon"],"summary":"Love prediction based on partner name and birth date","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"nama","in":"query","required":true,"schema":{"type":"string","example":"naze"}},{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}},{"name":"nama2","in":"query","required":true,"schema":{"type":"string","example":"naze2"}},{"name":"tanggal2","in":"query","required":true,"schema":{"type":"string","example":"2"}},{"name":"bulan2","in":"query","required":true,"schema":{"type":"string","example":"2"}},{"name":"tahun2","in":"query","required":true,"schema":{"type":"string","example":"2001"}}],"x-tier":"free"}},"/primbon/ramalan-jodoh":{"get":{"tags":["Primbon"],"summary":"Soulmate prediction based on partner name and birth date","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"nama","in":"query","required":true,"schema":{"type":"string","example":"naze"}},{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}},{"name":"nama2","in":"query","required":true,"schema":{"type":"string","example":"naze2"}},{"name":"tanggal2","in":"query","required":true,"schema":{"type":"string","example":"2"}},{"name":"bulan2","in":"query","required":true,"schema":{"type":"string","example":"2"}},{"name":"tahun2","in":"query","required":true,"schema":{"type":"string","example":"2001"}}],"x-tier":"free"}},"/primbon/ramalan-jodoh-bali":{"get":{"tags":["Primbon"],"summary":"Balinese soulmate prediction based on partner name and birth date","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"nama","in":"query","required":true,"schema":{"type":"string","example":"naze"}},{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}},{"name":"nama2","in":"query","required":true,"schema":{"type":"string","example":"naze2"}},{"name":"tanggal2","in":"query","required":true,"schema":{"type":"string","example":"2"}},{"name":"bulan2","in":"query","required":true,"schema":{"type":"string","example":"2"}},{"name":"tahun2","in":"query","required":true,"schema":{"type":"string","example":"2001"}}],"x-tier":"free"}},"/primbon/rejeki":{"get":{"tags":["Primbon"],"summary":"Weton fortune and luck prediction","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/shio":{"get":{"tags":["Primbon"],"summary":"Zodiac prediction based on query","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/primbon/sifat-usaha":{"get":{"tags":["Primbon"],"summary":"Business traits based on weton","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/suami-istri":{"get":{"tags":["Primbon"],"summary":"Husband and wife compatibility prediction","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"nama","in":"query","required":true,"schema":{"type":"string","example":"naze"}},{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}},{"name":"nama2","in":"query","required":true,"schema":{"type":"string","example":"naze2"}},{"name":"tanggal2","in":"query","required":true,"schema":{"type":"string","example":"2"}},{"name":"bulan2","in":"query","required":true,"schema":{"type":"string","example":"2"}},{"name":"tahun2","in":"query","required":true,"schema":{"type":"string","example":"2001"}}],"x-tier":"free"}},"/primbon/tarot":{"get":{"tags":["Primbon"],"summary":"Tarot card meaning based on birth date","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/primbon/weton":{"get":{"tags":["Primbon"],"summary":"Weton Jawa berdasarkan tanggal lahir","description":"This endpoint provides dynamic divination and fortune-telling capabilities based on traditional Primbon concepts or fun randomization algorithms. By accepting relevant parameters (such as names, dates, or specific queries), it calculates and returns an engaging prediction, trait analysis, or mystical insight. The resulting data is structured in a clear JSON payload. Developers can integrate this versatile endpoint into entertainment applications, astrology bots, or cultural platforms to offer users unique, interactive, and personalized mystical experiences without maintaining extensive local calculation models.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tanggal","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"bulan","in":"query","required":true,"schema":{"type":"string","example":"1"}},{"name":"tahun","in":"query","required":true,"schema":{"type":"string","example":"2000"}}],"x-tier":"free"}},"/random/alpaca":{"get":{"tags":["Random"],"summary":"Get a random alpaca image","description":"Fetches a random alpaca image from the Sefinek API.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/ass":{"get":{"tags":["Random"],"summary":"Get a random anime image by category (ass)","description":"Fetches a Random anime image for the ass category.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/bijak":{"get":{"tags":["Random"],"summary":"Get random Bijak","description":"Returns a single random entry from the Bijak collection.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/bird":{"get":{"tags":["Random"],"summary":"Get a random bird image","description":"Fetches a random bird image from the Sefinek API.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/bucin":{"get":{"tags":["Random"],"summary":"Get random Bucin","description":"Returns a single random entry from the Bucin collection.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/cat":{"get":{"tags":["Random"],"summary":"Get a random cat image","description":"Fetches a random cat image from the Sefinek API.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/cat2":{"get":{"tags":["Random"],"summary":"Get a random cat image (TheCatAPI)","description":"Fetches a random cat image from TheCatAPI.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/color":{"get":{"tags":["Random"],"summary":"Get a randomly generated solid color image","description":"Generates a solid-color PNG image using a randomly chosen color and returns it as binary image data, ready to be displayed or downloaded.\n","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/color-blind":{"get":{"tags":["Random"],"summary":"Get a random color blindness test image","description":"Returns a single random entry from a curated collection of color blindness (Ishihara-style) test images. Data is sourced from a remote JSON dataset and cached in memory for up to 30 minutes to reduce upstream requests.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/coupel":{"get":{"tags":["Random"],"summary":"Get a random couple profile picture","description":"Returns a single random entry from a curated collection of matching couple profile pictures. Data is sourced from a remote JSON dataset and cached in memory for up to 30 minutes to reduce upstream requests.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/dare":{"get":{"tags":["Random"],"summary":"Get random Dare","description":"Returns a single random entry from the Dare collection.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/dog":{"get":{"tags":["Random"],"summary":"Get a random dog image","description":"Fetches a random dog image from the Sefinek API.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/ecchi":{"get":{"tags":["Random"],"summary":"Get a random anime image by category (ecchi)","description":"Fetches a Random anime image for the ecchi category.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/ero":{"get":{"tags":["Random"],"summary":"Get a random anime image by category (ero)","description":"Fetches a Random anime image for the ero category.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/fish":{"get":{"tags":["Random"],"summary":"Get a random fish image","description":"Fetches a random fish image from the Sefinek API.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/fox":{"get":{"tags":["Random"],"summary":"Get a random fox image","description":"Fetches a random fox image from the Sefinek API.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/hentai":{"get":{"tags":["Random"],"summary":"Get a random anime image by category (hentai)","description":"Fetches a Random anime image for the hentai category.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/loli":{"get":{"tags":["Random"],"summary":"Get a random loli image","description":"Fetches a random anime image from the loliapi.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/maid":{"get":{"tags":["Random"],"summary":"Get a random maid image","description":"Image type (Safe for Work or Not Safe for Work)","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"type","in":"query","schema":{"type":"string","enum":["sfw","nsfw"],"default":"sfw","example":"sfw","required":false}}],"x-tier":"free"}},"/random/milf":{"get":{"tags":["Random"],"summary":"Get a random anime image by category (milf)","description":"Fetches a Random anime image for the milf category.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/motivasi":{"get":{"tags":["Random"],"summary":"Get random Motivasi","description":"Returns a single random entry from the Motivasi collection.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/neko":{"get":{"tags":["Random"],"summary":"Get a random neko image","description":"Image type (currently defaults to sfw based on the API)","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"type","in":"query","schema":{"type":"string","enum":["sfw","nsfw"],"default":"sfw","example":"sfw","required":false}}],"x-tier":"free"}},"/random/oral":{"get":{"tags":["Random"],"summary":"Get a random anime image by category (oral)","description":"Fetches a Random anime image for the oral category.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/paizuri":{"get":{"tags":["Random"],"summary":"Get a random anime image by category (paizuri)","description":"Fetches a Random anime image for the paizuri category.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/quotes":{"get":{"tags":["Random"],"summary":"Get random Quotes","description":"Returns a single random entry from the Quotes collection.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/renungan":{"get":{"tags":["Random"],"summary":"Get random Renungan","description":"Returns a single random entry from the Renungan collection.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/truth":{"get":{"tags":["Random"],"summary":"Get random Truth","description":"Returns a single random entry from the Truth collection.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"free"}},"/random/waifu":{"get":{"tags":["Random"],"summary":"Get a random waifu image","description":"Image type (Safe for Work or Not Safe for Work)","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"type","in":"query","schema":{"type":"string","enum":["sfw","nsfw"],"default":"sfw","example":"sfw"}}],"x-tier":"free"}},"/search/anime":{"get":{"tags":["Search"],"summary":"Search anime by trace.moe","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":false,"schema":{"type":"string","example":"naruto"}},{"name":"url","in":"query","required":false,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/search/anime-character":{"get":{"tags":["Search"],"summary":"Search anime character from myanimelist","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"naruto"}}],"x-tier":"free"}},"/search/anime2":{"get":{"tags":["Search"],"summary":"Search anime using jikan api","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"naruto"}}],"x-tier":"free"}},"/search/anime3":{"get":{"tags":["Search"],"summary":"Search anime using animekita api","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"naruto"}}],"x-tier":"free"}},"/search/apple-music":{"get":{"tags":["Search"],"summary":"Search songs on apple music","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"imagine dragons"}}],"x-tier":"free"}},"/search/aptoid":{"get":{"tags":["Search"],"summary":"Search apps on aptoide","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"minecraft"}}],"x-tier":"free"}},"/search/bilibili":{"get":{"tags":["Search"],"summary":"Search videos on bilibili","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"naruto"}}],"x-tier":"free"}},"/search/bing":{"get":{"tags":["Search"],"summary":"Search results using bing","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"tech news"}}],"x-tier":"free"}},"/search/bing-image":{"get":{"tags":["Search"],"summary":"Search images using bing","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"cute dog"}}],"x-tier":"free"}},"/search/bing-video":{"get":{"tags":["Search"],"summary":"Search videos using bing","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"funny cats"}}],"x-tier":"free"}},"/search/capcut":{"get":{"tags":["Search"],"summary":"Search capcut templates","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"cinematic"}}],"x-tier":"free"}},"/search/danbooru":{"get":{"tags":["Search"],"summary":"Search images on danbooru","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"tags","in":"query","required":true,"schema":{"type":"string","example":"naruto"}}],"x-tier":"free"}},"/search/douyin":{"get":{"tags":["Search"],"summary":"Search videos on douyin","description":"Douyin search keyword","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"kucing","cache":true,"cacheDuration":1800}}],"x-tier":"free"}},"/search/genius-music":{"get":{"tags":["Search"],"summary":"Search music on genius","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"coldplay"}}],"x-tier":"free"}},"/search/github":{"get":{"tags":["Search"],"summary":"Search on github repositories (custom grep)","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"whatsapp-bot"}}],"x-tier":"free"}},"/search/github-code":{"get":{"tags":["Search"],"summary":"Search source code on github","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"whatsapp-bot"}}],"x-tier":"free"}},"/search/github-repo":{"get":{"tags":["Search"],"summary":"Search repositories on github (official api)","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"whatsapp-bot"}}],"x-tier":"free"}},"/search/google":{"get":{"tags":["Search"],"summary":"Search using google","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"tech news"}}],"x-tier":"free"}},"/search/google-scholar":{"get":{"tags":["Search"],"summary":"Search on google scholar","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"machine learning"}}],"x-tier":"free"}},"/search/kemono":{"get":{"tags":["Search"],"summary":"Kemono.cr Search","description":"This endpoint performs a search for posts on Kemono.cr, returning optimally distributed media links and thumbnails for seamless integration across multiple content delivery servers.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"q","in":"query","required":true,"schema":{"type":"string","example":"suguha kirigaya"}}],"x-tier":"free"}},"/search/lahelu":{"get":{"tags":["Search"],"summary":"Search memes/posts from lahelu","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"meme"}},{"name":"page","in":"query","required":false,"schema":{"type":"string","example":"1"}}],"x-tier":"free"}},"/search/mahasiswa":{"get":{"tags":["Search"],"summary":"Search mahasiswa data (pddikti)","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"budi santoso"}}],"x-tier":"free"}},"/search/meloboom":{"get":{"tags":["Search"],"summary":"Search ringtone on meloboom","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"iphone"}}],"x-tier":"free"}},"/search/nekopoi":{"get":{"tags":["Search"],"summary":"Search Nekopoi (NSFW)","description":"Search for anime episodes or series on Nekopoi based on the provided query string.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"isekai","cache":true,"cacheDuration":1800}}],"x-tier":"premium"}},"/search/nekopoi/genre":{"get":{"tags":["Search"],"summary":"Get Nekopoi by Genre (NSFW)","description":"Retrieve anime lists on Nekopoi categorized by specific genres.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"incest","cache":true,"cacheDuration":1800}}],"x-tier":"premium"}},"/search/nekopoi/latest":{"get":{"tags":["Search"],"summary":"Get Latest Nekopoi Releases (NSFW)","description":"Retrieve the latest updated anime episodes and releases from Nekopoi.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"x-tier":"premium"}},"/search/nekopoi/type":{"get":{"tags":["Search"],"summary":"Get Nekopoi by Type/Index (NSFW)","description":"Browse Nekopoi index directory by specifying type, alphabet letter, and page number.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"type","in":"query","required":true,"schema":{"type":"string","example":"anime"}},{"name":"letter","in":"query","required":true,"schema":{"type":"string","example":"a"}},{"name":"page","in":"query","required":false,"schema":{"type":"string","default":"1","example":"1","cache":true,"cacheDuration":1800}}],"x-tier":"premium"}},"/search/nhentai":{"get":{"tags":["Search"],"summary":"Search nHentai (NSFW)","description":"Search for doujinshi and manga on nHentai using a query string or fetch popular releases.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":false,"schema":{"type":"string","example":"naruto"}},{"name":"popular","in":"query","required":false,"schema":{"type":"boolean","default":true,"example":true,"cache":true,"cacheDuration":1800}}],"x-tier":"premium"}},"/search/nhentai2":{"get":{"tags":["Search"],"summary":"Search nHentai Alternative (NSFW)","description":"Alternative endpoint to search for doujinshi and manga on nHentai using a query string.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":false,"schema":{"type":"string","example":"boruto"}},{"name":"popular","in":"query","required":false,"schema":{"type":"boolean","default":true,"example":true,"cache":true,"cacheDuration":1800}}],"x-tier":"premium"}},"/search/npm":{"get":{"tags":["Search"],"summary":"Search npm packages","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"express"}}],"x-tier":"free"}},"/search/pinterest":{"get":{"tags":["Search"],"summary":"Search pinterest","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"minimalist desk setup"}}],"x-tier":"free"}},"/search/pinterest-lens":{"get":{"tags":["Search"],"summary":"Pinterest Lens Upload","description":"This endpoint performs a visual search on Pinterest by uploading an image from a URL. It validates the image URL via a HEAD request before processing.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://raw.githubusercontent.com/kukilai/0/refs/heads/main/kaoruko.webp"}}],"x-tier":"premium"},"post":{"tags":["Search"],"summary":"Pinterest Lens Upload (POST)","description":"This endpoint performs a visual search on Pinterest via POST by passing an image URL.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["url"],"example":{"url":"https://raw.githubusercontent.com/kukilai/0/refs/heads/main/kaoruko.jpg"},"properties":{"url":{"type":"string"}}}}}},"x-tier":"premium"}},"/search/pixabay":{"get":{"tags":["Search"],"summary":"Search videos on pixabay","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"nature"}}],"x-tier":"free"}},"/search/pixiv":{"get":{"tags":["Search"],"summary":"Search artworks on pixiv","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"miku"}},{"name":"page","in":"query","required":false,"schema":{"type":"string","example":"1"}}],"x-tier":"free"}},"/search/pixiv-tag":{"get":{"tags":["Search"],"summary":"Search tags on pixiv","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"hatsune miku"}}],"x-tier":"free"}},"/search/playstore":{"get":{"tags":["Search"],"summary":"Search apps on google play store","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"minecraft"}}],"x-tier":"free"}},"/search/reddit":{"get":{"tags":["Search"],"summary":"Search posts on reddit","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"programming"}}],"x-tier":"free"}},"/search/rule34video":{"get":{"tags":["Search"],"summary":"Search Rule34Video (NSFW)","description":"Search for videos on Rule34Video using a specific query string.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"anime","cache":true,"cacheDuration":1800}}],"x-tier":"premium"}},"/search/rule34video-dl":{"get":{"tags":["Search"],"summary":"Rule34Video Downloader (NSFW)","description":"Search and retrieve download links for videos from Rule34Video based on the provided query.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"anime","cache":true,"cacheDuration":1800}}],"x-tier":"premium"}},"/search/seegore":{"get":{"tags":["Search"],"summary":"Search Seegore (NSFW)","description":"Search and scrape video titles, thumbnails, and links from Seegore based on a query.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","maxLength":100,"example":"accident","cache":true,"cacheDuration":1800}}],"x-tier":"free"}},"/search/sfile":{"get":{"tags":["Search"],"summary":"Search sfile","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"mod apk"}}],"x-tier":"free"}},"/search/soundcloud":{"get":{"tags":["Search"],"summary":"Search tracks on soundcloud","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"chill lo-fi"}}],"x-tier":"free"}},"/search/soundcloud2":{"get":{"tags":["Search"],"summary":"Search lagu dari soundcloud","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"chill lo-fi"}}],"x-tier":"free"}},"/search/spotify":{"get":{"tags":["Search"],"summary":"Search tracks on spotify","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"shape of you"}}],"x-tier":"free"}},"/search/spotify/album":{"get":{"tags":["Search"],"summary":"Search albums on spotify","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"id","in":"query","required":true,"schema":{"type":"string","example":"4aawyAB9vmqN3uQ7FjRGTy"}}],"x-tier":"free"}},"/search/sticker":{"get":{"tags":["Search"],"summary":"Search stickers","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"pentol"}}],"x-tier":"free"}},"/search/tenor":{"get":{"tags":["Search"],"summary":"Search gifs from tenor","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"sad"}}],"x-tier":"free"}},"/search/tiktok":{"get":{"tags":["Search"],"summary":"Search videos on tiktok","description":"Type of search (default video)","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"kucing"}},{"name":"type","in":"query","required":false,"schema":{"type":"string","default":"video","enum":["uguuse","catbox","pomf2","fileio","filemail","gofile","filebin","filetransfer"],"example":"video","cache":true,"cacheDuration":1800}}],"x-tier":"free"}},"/search/wallpaper":{"get":{"tags":["Search"],"summary":"Search wallpapers","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"nature"}}],"x-tier":"free"}},"/search/wikipedia":{"get":{"tags":["Search"],"summary":"Search wikipedia indonesia","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"indonesia"}}],"x-tier":"free"}},"/search/yahoo-image":{"get":{"tags":["Search"],"summary":"Search images from yahoo","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"cat"}}],"x-tier":"free"}},"/search/youtube":{"get":{"tags":["Search"],"summary":"Search videos on youtube","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"mrbeast"}}],"x-tier":"free"}},"/search/youtube-suggestion":{"get":{"tags":["Search"],"summary":"Get search suggestions from youtube","description":"This robust endpoint provides advanced search capabilities specifically tailored for the target platform or media type. By accepting a specific user query, it interfaces seamlessly with the corresponding external search engine, data repository, or API service to fetch highly relevant, up-to-date results. The endpoint processes the raw response and returns a cleanly structured JSON payload, typically containing titles, descriptions, direct URLs, and associated metadata. Developers can leverage this powerful tool to easily integrate comprehensive search functionalities into their chatbots, digital assistants, or customized aggregation dashboards without building complex, platform-specific scraping logic from scratch.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"query","in":"query","required":true,"schema":{"type":"string","example":"pewdie"}}],"x-tier":"free"}},"/textpro/1917":{"all":{"tags":["TextPro"],"summary":"TextPro Single: 1917","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/3d-glowing-blue":{"all":{"tags":["TextPro"],"summary":"TextPro Single: 3d-glowing-blue","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/3d-neon-blue":{"all":{"tags":["TextPro"],"summary":"TextPro Single: 3d-neon-blue","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/3dchristmas":{"all":{"tags":["TextPro"],"summary":"TextPro Single: 3dchristmas","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/3dglowingneo":{"all":{"tags":["TextPro"],"summary":"TextPro Single: 3dglowingneo","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/3dneonlight":{"all":{"tags":["TextPro"],"summary":"TextPro Single: 3dneonlight","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/3dstone":{"all":{"tags":["TextPro"],"summary":"TextPro Single: 3dstone","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/advance-glow":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Advance-glow","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/ancient":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Ancient","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/arcane":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Arcane","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/avengers":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Avengers","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/berry":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Berry","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/big-sale":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Big-sale","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/biscuit":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Biscuit","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/blackpink":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Blackpink","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/blackpink-album":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Blackpink-album","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/blackpinkneon":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Blackpinkneon","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/blood":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Blood","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/bloodglas":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Bloodglas","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/bokeh":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Bokeh","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/brokenglass":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Brokenglass","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/candy":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Candy","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/captain-america":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Captain-america","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/chocolate":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Chocolate","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/christmas":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Christmas","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/chrome-luxury":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Chrome-luxury","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/cinematic-horror":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Cinematic-horror","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/circuit":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Circuit","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/cloud":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Cloud","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/darkgold":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Darkgold","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/deadpool":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Deadpool","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/deepsea":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Deepsea","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/demon":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Demon","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/discovery":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Discovery","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/dropwater":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Dropwater","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/fiction":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Fiction","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/firework":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Firework","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/fruitjuice":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Fruitjuice","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/glitch":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Glitch","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/glitch2":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Glitch2","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/glowingneonlight":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Glowingneonlight","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/glue":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Glue","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/gold-glitter":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Gold-glitter","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/gold-rose":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Gold-rose","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/golden":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Golden","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/gradienneon":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Gradienneon","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/graffitibike":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Graffitibike","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/green-neon":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Green-neon","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/hallowen":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Hallowen","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/harrypotter":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Harrypotter","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/hellfire":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Hellfire","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/honey":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Honey","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/ice":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Ice","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/impressiveglitch":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Impressiveglitch","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/joker":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Joker","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/lava":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Lava","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/leaves":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Leaves","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/magma":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Magma","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/marvel":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Marvel","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/marver-metal":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Marver-metal","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/matrix":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Matrix","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metal-galaxy":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Metal-galaxy","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metal-gold":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Metal-gold","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metal-online":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Metal-online","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metal-rose":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Metal-rose","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metal-rusted":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Metal-rusted","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metal-silver":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Metal-silver","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metalic":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Metalic","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metalic-cold":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Metalic-cold","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metalic-glossy":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Metalic-glossy","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metalic-grunge":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Metalic-grunge","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metalic-luxury":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Metalic-luxury","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/metalic-shiny":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Metalic-shiny","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/multicolor":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Multicolor","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neon":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neon","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neon-blackpink":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neon-blackpink","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neon-reflected":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neon-reflected","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neonbrickwall":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neonbrickwall","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neondefil":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neondefil","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neondevil":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neondevil","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neonfuturistic":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neonfuturistic","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neongalaxy":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neongalaxy","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neonglitch":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neonglitch","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/neonlight":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Neonlight","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/papercut":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Papercut","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/pencil":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Pencil","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/pornhub":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Pornhub","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/rainbow":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Rainbow","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/realburning":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Realburning","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/retro":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Retro","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/rock":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Rock","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/sand":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Sand","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/scary-halloween":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Scary-halloween","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/scifi":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Scifi","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/skeleton":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Skeleton","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/slicedlight":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Slicedlight","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/snow":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Snow","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/space":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Space","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/sparklechristmas":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Sparklechristmas","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/spooky":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Spooky","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/strawberry":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Strawberry","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/summerneon":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Summerneon","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/sunsetlight":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Sunsetlight","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/thor":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Thor","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/thunder":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Thunder","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/tiktok":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Tiktok","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/toxic":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Toxic","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/transformer":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Transformer","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/underwater":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Underwater","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/vintage-light":{"all":{"tags":["TextPro"],"summary":"TextPro Double: Vintage-light","description":"Second text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Budi"}},{"name":"text2","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/watercolor":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Watercolor","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/waterpipe":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Waterpipe","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/white-gold":{"all":{"tags":["TextPro"],"summary":"TextPro Single: White-gold","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/wicker":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Wicker","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/textpro/wood":{"all":{"tags":["TextPro"],"summary":"TextPro Single: Wood","description":"Text to be applied to the effect","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Pekerti"}}],"x-tier":"free"}},"/tools/2fa":{"all":{"tags":["Tools"],"summary":"2fa (all)","description":"This endpoint provides robust Two-Factor Authentication (2FA) capabilities, ensuring an additional layer of security for user accounts and sensitive transactions. By generating and validating Time-based One-Time Passwords (TOTP), this module helps developers implement strong authentication mechanisms seamlessly. Designed for high availability and low latency, it mitigates unauthorized access risks while providing a smooth user experience. Whether you are integrating 2FA into a new application or upgrading existing security protocols, this highly scalable solution meets modern security standards, delivering reliable and instant verification for any platform or enterprise system.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"secret","in":"query","required":true,"schema":{"type":"string","example":"JBSWY3DPEHPK3PXP"}}],"x-tier":"free"}},"/tools/2fa/generate":{"all":{"tags":["Tools"],"summary":"2fa/generate (all)","description":"This endpoint provides robust Two-Factor Authentication (2FA) capabilities, ensuring an additional layer of security for user accounts and sensitive transactions. By generating and validating Time-based One-Time Passwords (TOTP), this module helps developers implement strong authentication mechanisms seamlessly. Designed for high availability and low latency, it mitigates unauthorized access risks while providing a smooth user experience. Whether you are integrating 2FA into a new application or upgrading existing security protocols, this highly scalable solution meets modern security standards, delivering reliable and instant verification for any platform or enterprise system.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"account","in":"query","required":false,"schema":{"type":"string","example":"user@example.com"}},{"name":"issuer","in":"query","required":false,"schema":{"type":"string","example":"My App"}}],"x-tier":"free"}},"/tools/ai-inspect":{"get":{"tags":["Tools"],"summary":"Get http response from ai inspect","description":"This critical cybersecurity endpoint conducts rapid, comprehensive safety assessments of any specified website URL, effectively identifying malicious domains, phishing threats, and known malware distributors. By continuously querying updated global threat intelligence databases, it provides an instant, highly reliable safety score to protect end-users from potential cyber-attacks. This API is indispensable for secure web browsers, automated link shorteners, and enterprise network security tools. Designed for ultra-fast, real-time threat detection, it proactively mitigates digital risks, ensuring a safe, trusted, and highly secure browsing experience for all users.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/anti-chatgpt":{"get":{"tags":["Tools"],"summary":"Deteksi teks yang dibuat chatgpt","description":"This sophisticated endpoint utilizes advanced machine learning algorithms to accurately detect AI-generated text, distinguishing between human-written content and machine-generated output. It analyzes linguistic patterns, perplexity, and syntax anomalies to provide a reliable probability score. Ideal for academic institutions, content moderators, and digital publishers, this tool helps maintain content authenticity and integrity. Designed to handle high volumes of text efficiently, it integrates seamlessly into existing editorial workflows, offering real-time analysis and robust reporting to combat academic dishonesty, spam, and unverified automated content across various platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"This is a test sentence generated by AI to see if it can be detected as artificial or human written."}}],"x-tier":"free"}},"/tools/binary2text":{"get":{"tags":["Tools"],"summary":"Convert binary to text","description":"This essential utility endpoint seamlessly converts binary code representations into readable human text strings. By parsing standard binary inputs and accurately decoding them back to their original ASCII or UTF-8 formats, it eliminates manual translation errors and accelerates debugging workflows. This tool is highly beneficial for developers, system administrators, and cybersecurity professionals who frequently analyze raw data streams, low-level system logs, or network packets. Built for speed and accuracy, it effortlessly handles continuous data transformations in both lightweight applications and complex data processing pipelines.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"biner","in":"query","required":true,"schema":{"type":"string","example":"01101000 01100101 01101100 01101100 01101111"}}],"x-tier":"free"}},"/tools/blur":{"all":{"tags":["Tools"],"summary":"Blur (all)","description":"This versatile image processing endpoint provides an extensive array of manipulation tools, including mirroring, resizing, and dynamic visual filtering. It enables developers to perform rapid, high-quality graphical transformations on demand, drastically reducing the need for heavy client-side processing. Ideal for digital media platforms, content management systems, and social networking applications, this API guarantees consistent image output optimized for web delivery. Built with scalability and performance in mind, it seamlessly handles high-volume image requests, ensuring fast load times and an enhanced, visually engaging user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/buffer2text":{"get":{"tags":["Tools"],"summary":"Convert base64 buffer to text","description":"Designed for optimal performance, this endpoint transforms base64 encoded buffer data into clear, human-readable text. It acts as a critical bridge between binary data storage and front-end text representation, ensuring seamless data serialization and deserialization. Software engineers and data analysts can leverage this utility to instantly decode API payloads, file system buffers, and encrypted message blocks. With its robust error handling and high-speed execution, this tool guarantees precise data recovery, enabling efficient backend communication and rapid troubleshooting in modern distributed systems and microservices.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"buffer","in":"query","required":true,"schema":{"type":"string","example":"aGVsbG8="}}],"x-tier":"free"}},"/tools/chatgpt-detector":{"get":{"tags":["Tools"],"summary":"Mendeteksi teks dibuat chatgpt v2","description":"This sophisticated endpoint utilizes advanced machine learning algorithms to accurately detect AI-generated text, distinguishing between human-written content and machine-generated output. It analyzes linguistic patterns, perplexity, and syntax anomalies to provide a reliable probability score. Ideal for academic institutions, content moderators, and digital publishers, this tool helps maintain content authenticity and integrity. Designed to handle high volumes of text efficiently, it integrates seamlessly into existing editorial workflows, offering real-time analysis and robust reporting to combat academic dishonesty, spam, and unverified automated content across various platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"This is a test sentence generated by AI to see if it can be detected as artificial or human written."}}],"x-tier":"free"}},"/tools/cuaca":{"get":{"tags":["Tools"],"summary":"Get weather data","description":"This comprehensive meteorological endpoint provides highly accurate, real-time weather data and dynamic forecasts for any specified geographic location globally. By aggregating data from reliable atmospheric tracking systems, it delivers precise metrics on temperature, humidity, wind speeds, and precipitation probabilities. This robust API is absolutely essential for travel applications, agricultural planning systems, and smart home automation platforms. Engineered to provide consistently updated and reliable climatic insights, it empowers developers to build context-aware, highly intelligent applications that effectively respond to real-world environmental conditions and changing weather patterns.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"city","in":"query","required":true,"schema":{"type":"string","example":"jakarta"}}],"x-tier":"free"}},"/tools/custom-qr":{"all":{"tags":["Tools"],"summary":"Custom qr (all)","description":"This highly efficient visual utility endpoint instantly generates precise, scannable Quick Response (QR) codes from standard text, web URLs, or complex data payloads. By leveraging robust encoding algorithms, it produces high-resolution graphical assets that flawlessly bridge the gap between digital content and the physical world. This API is indispensable for modern marketing campaigns, contactless payment systems, digital ticketing, and inventory tracking. Designed for instantaneous rendering and maximum scannability, it empowers developers to seamlessly integrate dynamic, highly reliable QR code generation into any modern application.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"data","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}},{"name":"logo","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/decrypt-text":{"get":{"tags":["Tools"],"summary":"Decrypt text with key","description":"This highly secure endpoint provides advanced text decryption capabilities, allowing users to safely retrieve original plaintext from encrypted messages using a specified cryptographic key. Built upon industry-standard encryption protocols, it ensures that sensitive communications, confidential user data, and proprietary information remain fully protected during transit and rest. Ideal for integration into secure messaging applications, enterprise data vaults, and compliance-driven platforms, this module guarantees rapid decryption with minimal overhead, maintaining absolute data privacy and robust security against unauthorized interception or malicious data breaches.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"U2FsdGVkX1/tB3a/r"}},{"name":"key","in":"query","required":true,"schema":{"type":"string","example":"secret123"}}],"x-tier":"free"}},"/tools/emojimix":{"all":{"tags":["Tools"],"summary":"Emojimix (all)","description":"This highly engaging utility endpoint allows developers to dynamically blend two separate emojis into a single, cohesive custom emoji image. Leveraging advanced graphical compositing techniques, it generates unique, high-quality visual assets that enhance user engagement and personalize digital interactions. Perfect for social media platforms, chat applications, and interactive community forums, this API delivers instant creative combinations. It provides an intuitive and seamless way to enrich digital communication, ensuring that users have access to expressive, fun, and highly customized visual elements with virtually zero latency.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"emoji1","in":"query","required":true,"schema":{"type":"string","example":"😂"}},{"name":"emoji2","in":"query","required":false,"schema":{"type":"string","example":"😭"}}],"x-tier":"free"}},"/tools/encode-jsfuck":{"post":{"tags":["Tools"],"summary":"Jsfuck encoder","description":"This advanced security endpoint provides powerful JavaScript code obfuscation, effectively transforming readable source code into highly complex, unreadable formats without altering its original functionality. By scrambling variable names, restructuring logic flow, and encrypting strings, it rigorously protects proprietary algorithms, intellectual property, and sensitive logic from reverse engineering and intellectual theft. This tool is indispensable for software vendors, game developers, and commercial web applications seeking to secure client-side scripts. It ensures maximum code protection while maintaining optimal runtime performance across all modern web browsers.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["code"],"example":{"code":"console.log('hello world');"},"properties":{"code":{"type":"string","example":"console.log('hello world');"}}}}}},"x-tier":"free"}},"/tools/encrypt-text":{"get":{"tags":["Tools"],"summary":"Encrypt text with key","description":"This powerful endpoint delivers robust text encryption functionalities, enabling developers to securely scramble plaintext data using strong, industry-standard cryptographic algorithms and custom keys. It is meticulously designed to safeguard sensitive information such as passwords, personal identification details, and private communications against unauthorized access and potential data leaks. Perfect for integration into highly secure enterprise systems, financial applications, and secure messaging platforms, this module guarantees maximum data confidentiality, ensuring that all transmitted or stored information remains completely impenetrable to external threats and malicious actors.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"hello world"}},{"name":"key","in":"query","required":true,"schema":{"type":"string","example":"secret123"}}],"x-tier":"free"}},"/tools/external-content":{"get":{"tags":["Tools"],"summary":"External content duckduckgo image","description":"This unique networking endpoint functions as a specialized proxy fetcher, cleverly utilizing Google Translate's infrastructure to bypass regional restrictions and retrieve web content anonymously. It provides developers with a highly resilient method for accessing blocked resources, scraping web data, and testing global application accessibility without requiring complex VPN setups. Designed for high availability and creative networking solutions, this API ensures rapid data retrieval and robust connection stability, making it an invaluable asset for specialized web research, automated data aggregation, and unrestricted digital exploration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/external-content2":{"get":{"tags":["Tools"],"summary":"External content weserv image","description":"This unique networking endpoint functions as a specialized proxy fetcher, cleverly utilizing Google Translate's infrastructure to bypass regional restrictions and retrieve web content anonymously. It provides developers with a highly resilient method for accessing blocked resources, scraping web data, and testing global application accessibility without requiring complex VPN setups. Designed for high availability and creative networking solutions, this API ensures rapid data retrieval and robust connection stability, making it an invaluable asset for specialized web research, automated data aggregation, and unrestricted digital exploration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/external-content3":{"get":{"tags":["Tools"],"summary":"External content cors proxy image","description":"This unique networking endpoint functions as a specialized proxy fetcher, cleverly utilizing Google Translate's infrastructure to bypass regional restrictions and retrieve web content anonymously. It provides developers with a highly resilient method for accessing blocked resources, scraping web data, and testing global application accessibility without requiring complex VPN setups. Designed for high availability and creative networking solutions, this API ensures rapid data retrieval and robust connection stability, making it an invaluable asset for specialized web research, automated data aggregation, and unrestricted digital exploration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/facedetector":{"get":{"tags":["Tools"],"summary":"Mendeteksi wajah dalam gambar","description":"Utilizing state-of-the-art computer vision technology, this sophisticated endpoint accurately detects and maps human faces within uploaded digital images. It swiftly analyzes visual data to identify facial landmarks, orientations, and quantities with remarkable precision, even in complex or crowded environments. This highly reliable tool is indispensable for applications involving biometric security, automated photo tagging, demographic analysis, and interactive media filters. Engineered to process high-resolution images rapidly, it empowers developers to build intelligent, visually-aware applications that enhance user experiences and streamline automated image moderation workflows.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"premium"}},"/tools/get-headers":{"get":{"tags":["Tools"],"summary":"Get http response headers","description":"This critical cybersecurity endpoint conducts rapid, comprehensive safety assessments of any specified website URL, effectively identifying malicious domains, phishing threats, and known malware distributors. By continuously querying updated global threat intelligence databases, it provides an instant, highly reliable safety score to protect end-users from potential cyber-attacks. This API is indispensable for secure web browsers, automated link shorteners, and enterprise network security tools. Designed for ultra-fast, real-time threat detection, it proactively mitigates digital risks, ensuring a safe, trusted, and highly secure browsing experience for all users.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/hd":{"all":{"tags":["Tools"],"summary":"Hd (all)","description":"This versatile image processing endpoint provides an extensive array of manipulation tools, including mirroring, resizing, and dynamic visual filtering. It enables developers to perform rapid, high-quality graphical transformations on demand, drastically reducing the need for heavy client-side processing. Ideal for digital media platforms, content management systems, and social networking applications, this API guarantees consistent image output optimized for web delivery. Built with scalability and performance in mind, it seamlessly handles high-volume image requests, ensuring fast load times and an enhanced, visually engaging user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"premium"}},"/tools/image2ansi":{"get":{"tags":["Tools"],"summary":"Konversi gambar menjadi ansi","description":"This versatile image processing endpoint provides an extensive array of manipulation tools, including mirroring, resizing, and dynamic visual filtering. It enables developers to perform rapid, high-quality graphical transformations on demand, drastically reducing the need for heavy client-side processing. Ideal for digital media platforms, content management systems, and social networking applications, this API guarantees consistent image output optimized for web delivery. Built with scalability and performance in mind, it seamlessly handles high-volume image requests, ensuring fast load times and an enhanced, visually engaging user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/ip-url":{"get":{"tags":["Tools"],"summary":"Resolve domain to ip","description":"This critical cybersecurity endpoint conducts rapid, comprehensive safety assessments of any specified website URL, effectively identifying malicious domains, phishing threats, and known malware distributors. By continuously querying updated global threat intelligence databases, it provides an instant, highly reliable safety score to protect end-users from potential cyber-attacks. This API is indispensable for secure web browsers, automated link shorteners, and enterprise network security tools. Designed for ultra-fast, real-time threat detection, it proactively mitigates digital risks, ensuring a safe, trusted, and highly secure browsing experience for all users.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/kodepos":{"get":{"tags":["Tools"],"summary":"Cari kode pos indonesia","description":"This highly efficient geographic utility endpoint enables users to quickly search and retrieve accurate postal codes (kode pos) across all regions of Indonesia. By seamlessly querying a comprehensively updated database, it ensures precise location mapping and streamlined logistics operations. This API is critically important for e-commerce platforms, delivery tracking systems, and user registration forms that require rigorous address validation. Engineered for low-latency responses, it significantly reduces manual data entry errors, optimizes shipping routes, and enhances overall customer satisfaction through reliable and instant location verification.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"form","in":"query","required":true,"schema":{"type":"string","example":"jakarta"}}],"x-tier":"free"}},"/tools/metube":{"get":{"tags":["Tools"],"summary":"Metube Video Summarizer","description":"Process and summarize YouTube videos using Metube.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://www.youtube.com/watch?v=..."}},{"name":"language","in":"query","required":false,"schema":{"type":"string","example":"en"}}],"x-tier":"free"},"post":{"tags":["Tools"],"summary":"Metube Video Summarizer (POST)","description":"Process and summarize YouTube videos using Metube via POST.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","example":{"url":"https://www.youtube.com/watch?v=...","language":"en"},"properties":{"url":{"type":"string"},"language":{"type":"string"}}}}}},"x-tier":"free"}},"/tools/mirror":{"all":{"tags":["Tools"],"summary":"Mirror (all)","description":"This versatile image processing endpoint provides an extensive array of manipulation tools, including mirroring, resizing, and dynamic visual filtering. It enables developers to perform rapid, high-quality graphical transformations on demand, drastically reducing the need for heavy client-side processing. Ideal for digital media platforms, content management systems, and social networking applications, this API guarantees consistent image output optimized for web delivery. Built with scalability and performance in mind, it seamlessly handles high-volume image requests, ensuring fast load times and an enhanced, visually engaging user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/ngl":{"get":{"tags":["Tools"],"summary":"Submit ngl message","description":"This streamlined endpoint facilitates the seamless submission of anonymous messages to the popular NGL platform. By handling the complex underlying network requests and payload formatting, it empowers developers to integrate anonymous feedback loops, Q&A features, and interactive social interactions directly into their own custom applications. Built for rapid execution and high reliability, this API bypasses standard implementation hurdles, ensuring that user privacy is maintained while delivering messages instantly. It is highly optimized for modern social apps aiming to boost user engagement and spontaneous interactions.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"link","in":"query","required":true,"schema":{"type":"string","example":"https://ngl.link/someuser"}},{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Hello there!"}}],"x-tier":"free"}},"/tools/nik-checker":{"get":{"tags":["Tools"],"summary":"Cek & parse nik indonesia","description":"This specialized demographic endpoint accurately parses and validates the Indonesian National Identity Number (NIK), extracting vital information such as birth date, gender, and regional origin. Utilizing precise algorithmic checks, it prevents fraudulent data entry and ensures high data integrity during user onboarding processes. This tool is absolutely essential for financial technology apps, government portals, and secure enterprise systems requiring strict Know Your Customer (KYC) compliance. Designed to process data instantly and securely, it streamlines identity verification while maintaining strict adherence to regional data formatting standards.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"nik","in":"query","required":true,"schema":{"type":"string","example":"3171234567890123"}}],"x-tier":"free"}},"/tools/npm":{"get":{"tags":["Tools"],"summary":"Tools npm packages","description":"This indispensable developer utility endpoint seamlessly queries the global NPM registry to fetch comprehensive metadata, version history, and dependency information for any specified Node.js package. It significantly accelerates the software development lifecycle by enabling automated package auditing, dependency tracking, and dynamic library discovery directly from external applications. Ideal for integration into CI/CD pipelines, integrated development environments, and technical analytics dashboards, this API delivers real-time, highly accurate package statistics, empowering developers to make informed architectural decisions and maintain secure, up-to-date software ecosystems.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"package","in":"query","required":true,"schema":{"type":"string","example":"axios"}}],"x-tier":"free"}},"/tools/nudity":{"get":{"tags":["Tools"],"summary":"Nudity detection from image","description":"This highly critical content moderation endpoint employs advanced machine learning models to detect explicit or Not Safe For Work (NSFW) content within digital images. By automatically analyzing visual elements for nudity, it provides a reliable safety score to prevent the distribution of inappropriate material. This robust API is essential for social media networks, public forums, and digital communities that enforce strict community guidelines. Engineered for high-speed, real-time processing, it drastically reduces the burden of manual moderation, ensuring a safe, compliant, and family-friendly digital environment.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/obfuscator":{"post":{"tags":["Tools"],"summary":"Javascript obfuscator","description":"This advanced security endpoint provides powerful JavaScript code obfuscation, effectively transforming readable source code into highly complex, unreadable formats without altering its original functionality. By scrambling variable names, restructuring logic flow, and encrypting strings, it rigorously protects proprietary algorithms, intellectual property, and sensitive logic from reverse engineering and intellectual theft. This tool is indispensable for software vendors, game developers, and commercial web applications seeking to secure client-side scripts. It ensures maximum code protection while maintaining optimal runtime performance across all modern web browsers.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["code"],"example":{"code":"console.log('hello world');"},"properties":{"code":{"type":"string","example":"console.log('hello world');"}}}}}},"x-tier":"free"}},"/tools/ocr":{"get":{"tags":["Tools"],"summary":"Ocr from image","description":"This intelligent Optical Character Recognition (OCR) endpoint efficiently extracts human-readable text from uploaded images and scanned documents. Leveraging advanced computer vision and machine learning techniques, it accurately recognizes a wide variety of fonts and handwriting styles, converting static images into fully editable and searchable digital text. This powerful API is highly beneficial for data digitization projects, automated receipt processing, and document management systems. Built to deliver exceptionally high accuracy and speed, it streamlines administrative workflows and unlocks hidden value from unstructured visual data.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/packer-base64":{"post":{"tags":["Tools"],"summary":"Base64 eval packer","description":"This advanced security endpoint provides powerful JavaScript code obfuscation, effectively transforming readable source code into highly complex, unreadable formats without altering its original functionality. By scrambling variable names, restructuring logic flow, and encrypting strings, it rigorously protects proprietary algorithms, intellectual property, and sensitive logic from reverse engineering and intellectual theft. This tool is indispensable for software vendors, game developers, and commercial web applications seeking to secure client-side scripts. It ensures maximum code protection while maintaining optimal runtime performance across all modern web browsers.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["code"],"example":{"code":"console.log('hello world');"},"properties":{"code":{"type":"string","example":"console.log('hello world');"}}}}}},"x-tier":"free"}},"/tools/pdf":{"get":{"tags":["Tools"],"summary":"Generate pdf from url","description":"This robust web utility endpoint instantly generates high-quality visual screenshots of any specified website URL. By utilizing a headless browser environment, it accurately captures complex web layouts, dynamic JavaScript elements, and modern CSS styles exactly as a real user would see them. This API is critically important for web archiving services, automated visual regression testing, and dynamic link preview generation. Designed for maximum reliability and speed, it effortlessly handles modern web technologies, providing developers with flawless visual snapshots to enhance monitoring and digital reporting.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/persamaan-kata":{"get":{"tags":["Tools"],"summary":"Find synonyms or equivalent words","description":"This comprehensive linguistic endpoint offers precise identification of root words (kata dasar) and discovers synonyms or equivalent terminologies within the Indonesian language. Utilizing a robust lexical database and advanced natural language processing algorithms, it significantly enhances search engine optimizations, text analytics, and educational applications. By accurately stripping affixes and providing meaningful semantic matches, this tool enables developers to build highly intelligent chat bots, content summarizers, and automated editorial tools, delivering superior linguistic accuracy and a deeper understanding of complex text structures.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"bahagia"}}],"x-tier":"free"}},"/tools/pixel":{"all":{"tags":["Tools"],"summary":"Pixel (all)","description":"This versatile image processing endpoint provides an extensive array of manipulation tools, including mirroring, resizing, and dynamic visual filtering. It enables developers to perform rapid, high-quality graphical transformations on demand, drastically reducing the need for heavy client-side processing. Ideal for digital media platforms, content management systems, and social networking applications, this API guarantees consistent image output optimized for web delivery. Built with scalability and performance in mind, it seamlessly handles high-volume image requests, ensuring fast load times and an enhanced, visually engaging user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/proxy":{"get":{"tags":["Tools"],"summary":"Proxy fetch via google translate","description":"This unique networking endpoint functions as a specialized proxy fetcher, cleverly utilizing Google Translate's infrastructure to bypass regional restrictions and retrieve web content anonymously. It provides developers with a highly resilient method for accessing blocked resources, scraping web data, and testing global application accessibility without requiring complex VPN setups. Designed for high availability and creative networking solutions, this API ensures rapid data retrieval and robust connection stability, making it an invaluable asset for specialized web research, automated data aggregation, and unrestricted digital exploration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"premium"}},"/tools/proxy2":{"get":{"tags":["Tools"],"summary":"Proxy fetch via all origin","description":"This unique networking endpoint functions as a specialized proxy fetcher, cleverly utilizing Google Translate's infrastructure to bypass regional restrictions and retrieve web content anonymously. It provides developers with a highly resilient method for accessing blocked resources, scraping web data, and testing global application accessibility without requiring complex VPN setups. Designed for high availability and creative networking solutions, this API ensures rapid data retrieval and robust connection stability, making it an invaluable asset for specialized web research, automated data aggregation, and unrestricted digital exploration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/proxy3":{"get":{"tags":["Tools"],"summary":"Proxy fetch via sf converter","description":"This unique networking endpoint functions as a specialized proxy fetcher, cleverly utilizing Google Translate's infrastructure to bypass regional restrictions and retrieve web content anonymously. It provides developers with a highly resilient method for accessing blocked resources, scraping web data, and testing global application accessibility without requiring complex VPN setups. Designed for high availability and creative networking solutions, this API ensures rapid data retrieval and robust connection stability, making it an invaluable asset for specialized web research, automated data aggregation, and unrestricted digital exploration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/proxy4":{"get":{"tags":["Tools"],"summary":"Proxy fetch via huggingface","description":"This unique networking endpoint functions as a specialized proxy fetcher, cleverly utilizing Google Translate's infrastructure to bypass regional restrictions and retrieve web content anonymously. It provides developers with a highly resilient method for accessing blocked resources, scraping web data, and testing global application accessibility without requiring complex VPN setups. Designed for high availability and creative networking solutions, this API ensures rapid data retrieval and robust connection stability, making it an invaluable asset for specialized web research, automated data aggregation, and unrestricted digital exploration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}},{"name":"get","in":"query","required":true,"schema":{"type":"string","example":"1"}}],"x-tier":"free"}},"/tools/proxy5":{"get":{"tags":["Tools"],"summary":"Proxy fetch via clgt","description":"This unique networking endpoint functions as a specialized proxy fetcher, cleverly utilizing Google Translate's infrastructure to bypass regional restrictions and retrieve web content anonymously. It provides developers with a highly resilient method for accessing blocked resources, scraping web data, and testing global application accessibility without requiring complex VPN setups. Designed for high availability and creative networking solutions, this API ensures rapid data retrieval and robust connection stability, making it an invaluable asset for specialized web research, automated data aggregation, and unrestricted digital exploration.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/rainbow-text":{"get":{"tags":["Tools"],"summary":"Konversi text ke ansi rainbow","description":"This highly creative utility endpoint dynamically transforms standard text strings into visually striking ANSI rainbow colored outputs. By algorithmically applying a spectrum of ANSI escape codes, it breathes life into mundane terminal interfaces and command-line applications. This tool is highly sought after by system administrators and tool developers looking to enhance the aesthetic appeal of server logs, CLI tools, and automated system alerts. Engineered for seamless integration, it provides an instant, zero-latency aesthetic upgrade, making command-line interactions significantly more engaging and visually distinct.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"hello world"}}],"x-tier":"free"}},"/tools/recolor":{"all":{"tags":["Tools"],"summary":"Recolor (all)","description":"This versatile image processing endpoint provides an extensive array of manipulation tools, including mirroring, resizing, and dynamic visual filtering. It enables developers to perform rapid, high-quality graphical transformations on demand, drastically reducing the need for heavy client-side processing. Ideal for digital media platforms, content management systems, and social networking applications, this API guarantees consistent image output optimized for web delivery. Built with scalability and performance in mind, it seamlessly handles high-volume image requests, ensuring fast load times and an enhanced, visually engaging user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/remini":{"all":{"tags":["Tools"],"summary":"Remini (all)","description":"This versatile image processing endpoint provides an extensive array of manipulation tools, including mirroring, resizing, and dynamic visual filtering. It enables developers to perform rapid, high-quality graphical transformations on demand, drastically reducing the need for heavy client-side processing. Ideal for digital media platforms, content management systems, and social networking applications, this API guarantees consistent image output optimized for web delivery. Built with scalability and performance in mind, it seamlessly handles high-volume image requests, ensuring fast load times and an enhanced, visually engaging user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":false,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/remove-wm":{"all":{"tags":["Tools"],"summary":"Remove wm (all)","description":"This versatile image processing endpoint provides an extensive array of manipulation tools, including mirroring, resizing, and dynamic visual filtering. It enables developers to perform rapid, high-quality graphical transformations on demand, drastically reducing the need for heavy client-side processing. Ideal for digital media platforms, content management systems, and social networking applications, this API guarantees consistent image output optimized for web delivery. Built with scalability and performance in mind, it seamlessly handles high-volume image requests, ensuring fast load times and an enhanced, visually engaging user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":false,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/rotate":{"all":{"tags":["Tools"],"summary":"Rotate (all)","description":"This versatile image processing endpoint provides an extensive array of manipulation tools, including mirroring, resizing, and dynamic visual filtering. It enables developers to perform rapid, high-quality graphical transformations on demand, drastically reducing the need for heavy client-side processing. Ideal for digital media platforms, content management systems, and social networking applications, this API guarantees consistent image output optimized for web delivery. Built with scalability and performance in mind, it seamlessly handles high-volume image requests, ensuring fast load times and an enhanced, visually engaging user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/safe-browser":{"get":{"tags":["Tools"],"summary":"Check website safety","description":"This critical cybersecurity endpoint conducts rapid, comprehensive safety assessments of any specified website URL, effectively identifying malicious domains, phishing threats, and known malware distributors. By continuously querying updated global threat intelligence databases, it provides an instant, highly reliable safety score to protect end-users from potential cyber-attacks. This API is indispensable for secure web browsers, automated link shorteners, and enterprise network security tools. Designed for ultra-fast, real-time threat detection, it proactively mitigates digital risks, ensuring a safe, trusted, and highly secure browsing experience for all users.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/screenshot":{"get":{"tags":["Tools"],"summary":"Capture screenshot from url","description":"This robust web utility endpoint instantly generates high-quality visual screenshots of any specified website URL. By utilizing a headless browser environment, it accurately captures complex web layouts, dynamic JavaScript elements, and modern CSS styles exactly as a real user would see them. This API is critically important for web archiving services, automated visual regression testing, and dynamic link preview generation. Designed for maximum reliability and speed, it effortlessly handles modern web technologies, providing developers with flawless visual snapshots to enhance monitoring and digital reporting.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}},{"name":"preset","in":"query","required":false,"schema":{"type":"string","example":"desktop"}},{"name":"fullpage","in":"query","required":false,"schema":{"type":"string","example":"true"}},{"name":"size","in":"query","required":false,"schema":{"type":"string","example":"1920x1080"}},{"name":"width","in":"query","required":false,"schema":{"type":"string","example":"1920"}},{"name":"height","in":"query","required":false,"schema":{"type":"string","example":"1080"}}],"x-tier":"free"}},"/tools/singkatan-kata":{"get":{"tags":["Tools"],"summary":"Ekspansi singkatan kata","description":"This comprehensive linguistic endpoint offers precise identification of root words (kata dasar) and discovers synonyms or equivalent terminologies within the Indonesian language. Utilizing a robust lexical database and advanced natural language processing algorithms, it significantly enhances search engine optimizations, text analytics, and educational applications. By accurately stripping affixes and providing meaningful semantic matches, this tool enables developers to build highly intelligent chat bots, content summarizers, and automated editorial tools, delivering superior linguistic accuracy and a deeper understanding of complex text structures.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"yg"}}],"x-tier":"free"}},"/tools/ss":{"get":{"tags":["Tools"],"summary":"Simple website screenshot","description":"This robust web utility endpoint instantly generates high-quality visual screenshots of any specified website URL. By utilizing a headless browser environment, it accurately captures complex web layouts, dynamic JavaScript elements, and modern CSS styles exactly as a real user would see them. This API is critically important for web archiving services, automated visual regression testing, and dynamic link preview generation. Designed for maximum reliability and speed, it effortlessly handles modern web technologies, providing developers with flawless visual snapshots to enhance monitoring and digital reporting.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/stego":{"get":{"tags":["Tools"],"summary":"Encode text or image into cover media (steganography)","description":"This advanced cryptographic endpoint offers powerful steganography capabilities, allowing users to seamlessly hide secretive text or images within other cover media files. By manipulating the least significant bits of an image, it ensures that the embedded data remains completely undetectable to the human eye, providing an invisible layer of secure communication. This highly specialized tool is ideal for digital watermarking, confidential data transmission, and intellectual property protection. Built for precision and absolute data integrity, it guarantees that hidden payloads remain intact and fully recoverable.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"secret message"}},{"name":"image","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}},{"name":"output","in":"query","required":true,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/styletext":{"get":{"tags":["Tools"],"summary":"Text to unicodepad","description":"This engaging typography endpoint instantly converts standard alphanumeric text into a diverse array of aesthetically pleasing Unicode font styles and distinctive typographic variations. By comprehensively mapping standard characters to stylized Unicode equivalents, it allows users to highly personalize their digital presence on social media, messaging apps, and gaming profiles. This API provides an incredibly seamless and instantaneous transformation process, equipping developers with the ability to offer rich, expressive text customization options that dramatically boost user engagement and creative expression across modern digital platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"hello world"}}],"x-tier":"free"}},"/tools/sub-domain":{"get":{"tags":["Tools"],"summary":"List known subdomains","description":"This critical cybersecurity endpoint conducts rapid, comprehensive safety assessments of any specified website URL, effectively identifying malicious domains, phishing threats, and known malware distributors. By continuously querying updated global threat intelligence databases, it provides an instant, highly reliable safety score to protect end-users from potential cyber-attacks. This API is indispensable for secure web browsers, automated link shorteners, and enterprise network security tools. Designed for ultra-fast, real-time threat detection, it proactively mitigates digital risks, ensuring a safe, trusted, and highly secure browsing experience for all users.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/sub-finder":{"get":{"tags":["Tools"],"summary":"Find subdomains","description":"This critical cybersecurity endpoint conducts rapid, comprehensive safety assessments of any specified website URL, effectively identifying malicious domains, phishing threats, and known malware distributors. By continuously querying updated global threat intelligence databases, it provides an instant, highly reliable safety score to protect end-users from potential cyber-attacks. This API is indispensable for secure web browsers, automated link shorteners, and enterprise network security tools. Designed for ultra-fast, real-time threat detection, it proactively mitigates digital risks, ensuring a safe, trusted, and highly secure browsing experience for all users.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/summarizer-kata":{"get":{"tags":["Tools"],"summary":"Meringkas teks","description":"This comprehensive linguistic endpoint offers precise identification of root words (kata dasar) and discovers synonyms or equivalent terminologies within the Indonesian language. Utilizing a robust lexical database and advanced natural language processing algorithms, it significantly enhances search engine optimizations, text analytics, and educational applications. By accurately stripping affixes and providing meaningful semantic matches, this tool enables developers to build highly intelligent chat bots, content summarizers, and automated editorial tools, delivering superior linguistic accuracy and a deeper understanding of complex text structures.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"Ini adalah contoh teks panjang yang perlu diringkas agar lebih mudah dipahami oleh pembaca."}}],"x-tier":"free"}},"/tools/tagihan-pln":{"get":{"tags":["Tools"],"summary":"Tools cek tagihan pln","description":"This highly practical financial utility endpoint enables users to swiftly check their Indonesian state electricity (PLN) billing information and outstanding arrears. By interfacing seamlessly with billing databases, it instantly retrieves precise data regarding energy consumption, current charges, and customer details. This API is absolutely essential for mobile banking applications, digital wallets, and personal finance dashboards aiming to provide comprehensive bill payment services. Engineered for secure and ultra-fast data retrieval, it ensures optimal accuracy, empowering users to manage their utility expenses efficiently and reliably.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"nopel","in":"query","required":true,"schema":{"type":"string","example":"534210987654"}}],"x-tier":"free"}},"/tools/text2biner":{"get":{"tags":["Tools"],"summary":"Convert text to binary","description":"This highly reliable utility endpoint effortlessly encodes standard human-readable text strings into their fundamental binary code representations. By converting complex alphanumeric characters and symbols into standardized sequences of zeros and ones, it bridges the gap between high-level language and low-level machine processing. This API is particularly useful for educational platforms teaching computer science concepts, cryptographic testing environments, and low-level data transmission protocols. Built to guarantee absolute precision and zero data loss, it ensures fast, highly accurate textual transformations for any technical or analytical requirement.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"hello world"}}],"x-tier":"free"}},"/tools/text2buffer":{"get":{"tags":["Tools"],"summary":"Convert text to base64 buffer","description":"This critical backend utility endpoint seamlessly converts standard plaintext strings into robust, base64 encoded buffer formats. It acts as an essential foundational tool for complex data serialization, ensuring that textual data can be safely embedded within binary protocols, image metadata, and secure network transmissions. Developers rely on this high-performance API to prepare data for cryptographic hashing, complex file generation, and secure API communications. Engineered for ultra-low latency and maximum reliability, it handles diverse character sets effortlessly, ensuring flawless data integrity across modern distributed infrastructures.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"hello world"}}],"x-tier":"free"}},"/tools/to-pdf":{"all":{"tags":["Tools"],"summary":"To pdf (all)","description":"This highly versatile document generation endpoint rapidly converts a variety of input formats—ranging from rich HTML content and raw text to digital images—into professionally formatted, fully standardized PDF documents. By ensuring absolute layout consistency and accurate typography rendering, it provides an invaluable service for automated invoice generation, dynamic reporting, and digital archiving systems. Engineered to handle large-scale document production with minimal overhead, this robust API delivers pristine, print-ready PDF files instantly, streamlining administrative workflows and significantly enhancing enterprise document management capabilities.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":false,"schema":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}],"x-tier":"free"}},"/tools/to-qr":{"all":{"tags":["Tools"],"summary":"To qr (all)","description":"This highly efficient visual utility endpoint instantly generates precise, scannable Quick Response (QR) codes from standard text, web URLs, or complex data payloads. By leveraging robust encoding algorithms, it produces high-resolution graphical assets that flawlessly bridge the gap between digital content and the physical world. This API is indispensable for modern marketing campaigns, contactless payment systems, digital ticketing, and inventory tracking. Designed for instantaneous rendering and maximum scannability, it empowers developers to seamlessly integrate dynamic, highly reliable QR code generation into any modern application.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"data","in":"query","required":true,"schema":{"type":"string","example":"https://github.com"}}],"x-tier":"free"}},"/tools/tools/qr2text":{"get":{"tags":["Tools"],"summary":"QR to Text","description":"This API endpoint allows you to extract text from a QR code provided as an image URL. It is useful for quickly decoding QR codes without needing a dedicated scanner. Simply provide the URL of an image containing a QR code, and the API will return the embedded text. This can be used in various applications, such as integrating QR code scanning into web applications, automating data extraction from QR codes, or verifying QR code content programmatically. The API supports standard image formats where QR codes are typically found.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"url","in":"query","required":true,"schema":{"type":"string","format":"url","example":"https://files.catbox.moe/uegf8m.png"}}],"x-tier":"free"},"post":{"tags":["Tools"],"summary":"QR to Text (POST)","description":"This API endpoint allows you to extract text from a QR code provided as an image URL in the request body. It is useful for quickly decoding QR codes without needing a dedicated scanner. Simply provide the URL of an image containing a QR code, and the API will return the embedded text. This can be used in various applications, such as integrating QR code scanning into web applications, automating data extraction from QR codes, or verifying QR code content programmatically. The API supports standard image formats where QR codes are typically found.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["url"],"properties":{"url":{"type":"string","format":"url","example":"https://files.catbox.moe/uegf8m.png"}},"additionalProperties":false}}}},"x-tier":"free"}},"/tools/translate":{"get":{"tags":["Tools"],"summary":"Translate text","description":"This sophisticated linguistic endpoint delivers highly accurate, real-time text translation across a vast array of global languages. By leveraging advanced neural machine translation models, it comprehensively understands contextual nuances, idiomatic expressions, and complex grammar structures, ensuring smooth and natural-sounding results. This powerful API is essential for internationalizing digital applications, breaking down communication barriers in global chat platforms, and localizing dynamic web content. Engineered for incredibly low latency and high scalability, it seamlessly empowers businesses to connect with a truly global audience effortlessly.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"halo dunia"}},{"name":"lang","in":"query","required":true,"schema":{"type":"string","example":"en"}}],"x-tier":"free"}},"/tools/tts":{"all":{"tags":["Tools"],"summary":"Tts (all)","description":"This highly versatile Text-to-Speech (TTS) endpoint converts standard written text into highly articulate, natural-sounding audio streams across various languages and voice profiles. Utilizing sophisticated vocal synthesis technologies, it accurately captures correct pronunciations, dynamic intonations, and natural pacing. This robust API is critically important for developing accessible applications for the visually impaired, creating interactive voice response systems, and producing automated multimedia voiceovers. Designed for real-time processing and exceptional audio clarity, it enables developers to seamlessly integrate rich, engaging auditory experiences into modern digital platforms.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":false,"schema":{"type":"string","example":"Halo dunia"}}],"x-tier":"free"}},"/tools/tts-google":{"get":{"tags":["Tools"],"summary":"Text to speech google","description":"This premium audio generation endpoint seamlessly leverages Google's cutting-edge Text-to-Speech infrastructure to synthesize highly realistic, studio-quality voice audio from plain text. By tapping into advanced WaveNet technology, it delivers incredibly lifelike vocal performances characterized by natural inflections and superior clarity. This API is the ultimate solution for high-end digital assistants, professional automated announcements, and premium audiobook generation. Engineered for maximum reliability and rapid execution, it allows developers to effortlessly deploy world-class, multi-lingual auditory features that dramatically elevate the overall digital user experience.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"text","in":"query","required":true,"schema":{"type":"string","example":"hello world"}}],"x-tier":"free"}},"/tools/vcc-generator":{"get":{"tags":["Tools"],"summary":"Generate virtual credit card","description":"This highly specialized financial utility endpoint dynamically generates simulated Virtual Credit Card (VCC) details, including validly formatted card numbers, expiration dates, and security codes based on industry-standard BIN algorithms. It is strictly designed for safe, closed-loop testing environments, enabling developers to rigorously validate payment gateways, e-commerce checkout flows, and financial verification logic without ever risking real financial assets. Built for rapid, secure, and compliant data generation, this robust API ensures that testing procedures are comprehensively thorough, highly realistic, and completely isolated from live production transactions.","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"type","in":"query","required":true,"schema":{"type":"string","example":"Visa"}},{"name":"count","in":"query","required":true,"schema":{"type":"string","example":"1"}}],"x-tier":"free"}},"/upload/videy":{"all":{"tags":["Upload"],"summary":"Videy.co Uploader","description":"URL of the video file to be uploaded","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"file":{"type":"string","format":"binary"}}}},"application/json":{"schema":{"type":"object","required":["url"],"example":{"url":"https://www.w3schools.com/html/mov_bbb.mp4"},"properties":{"url":{"type":"string","example":"https://www.w3schools.com/html/mov_bbb.mp4"}}}}}},"x-tier":"free"}},"/upload/{service}":{"all":{"tags":["Upload"],"summary":"File uploader","description":"URL of the file to be uploaded","responses":{"200":{"description":"Successful response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/SuccessResponse"}}}}},"parameters":[{"name":"service","in":"path","required":true,"schema":{"type":"string","enum":["uguuse","catbox","pomf2","fileio","filemail","gofile","filebin","filetransfer"],"example":"uguuse"}}],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"file":{"type":"string","format":"binary"}}}},"application/json":{"schema":{"type":"object","required":["url"],"example":{"url":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"},"properties":{"url":{"type":"string","example":"https://images.plurk.com/32B15UXxymfSMwKGTObY5e.jpg"}}}}}},"x-tier":"free"}}}}