v0: ChatGPT 3.5 - 4 (randomly chooses based on demand) UNLIMITED
POST /v0/chat/completions Response:{ "reply": "..." }Limits: NONE unlimited requests per minute (yes probably the best choice for 99% of projects fast, unlimited use only problem is stablility)
v1: Free ChatGPT 3.5
POST /v1/chat/completions Response:{ "reply": "...", "ms": 0 }Limits: 20 requests per minute.
v2: Premium ChatGPT (GPT-4o, etc)
POST /v2/chat/completions Response:{ "content": "...", "ms": 0 }Allowed models: gpt-4o, gpt-4o-mini, gpt-4.1-nano, gpt-4.1-mini, gpt-4.1
Limits: 10 requests per minute.
v3: DALL-E 3 Image Generation
POST /v3/images/generations Response:{ "created": timestamp, "data": [ { "url": "..." } ], "ms": 0 }Limits: 1 request per minute, dall-e-3 is the only model allowed.
v4: Base64 encoded Fast Image Generation
POST /v4/images/generations Response:{ "output": "BASE64CODE", "ms": 0 }Limits: 15 requests per minute (doesn't have to decode the base64 code so it's way faster than v3)
v5: Fast Audio Generation (AnyVoiceLab)
POST /v5/audio/generations Response:{ "url": "...", "ms": 0 }Limits: 60 requests per minute.
v6: Fast AI Image Generation (perchanceai) UNLIMITED
POST /v6/images/generations Response:{ "url": "...", "ms": 0 }Limits: NONE unlimited requests per minute only problem based on old flux so might be low quality
v7: AI Text Humanizer UNLIMITED
POST /v7/chat/completions Response:{ "text": "...", "ms": 0 }Limits: NONE unlimited requests per minute :)
v8: AI Detector (gptcheck)
POST /v8/chat/completions Response:{ "0123...": "...", "ms": 0 }Limits: 5 requests per minute (good luck figuring out what the response even means i barely even understand the prediction logic it uses ¯_(ツ)_/¯)
v9: Translate (google) UNLIMITED :)
POST /v9/translate/ Response:{ "text": "...", "ms": 0 }Limits: NONE unlimited requests per minute :)
v10: Unrestricted ai chatbot (mostly)
POST /v10/chat/completions Response:{ "text": "...", "ms": 0 }Limits: 10 requests per minute (also really unstable ashit soo might just stop working randomly)
v11: AI image describer (Advanced users)
POST /v11/image/describer Response:{ "description": "...", "ms": 0 }Limits: 15 requests per minute non advanced users may struggle with using this.
v12: Image 2 Text (Advanced users)
POST /v12/image/text{ "text": "...", "ms": 0 }Limits: 30 requests per minute non advanced users may struggle with using this.