ZyAI / Documentation
Back to app
Introduction

What is ZyAI?

ZyAI is a multi-model AI platform that gives you access to the world's best language models — Claude, Gemini, GPT, and more — through a single, unified interface. No separate subscriptions, no switching tabs, no API keys to manage.

ZyAI is built for speed and reliability — delivering near-instant responses with consistent performance regardless of where you are in the world.


Vision & Mission

The AI landscape is fragmenting. Every major lab ships its own interface, its own pricing, its own quirks. Users end up juggling five different tabs to do the work of one. ZyAI exists to fix that.

Our mission is to build the last AI interface you'll ever need — one that adapts to you, learns from your usage patterns, and eventually routes to the right model automatically without you having to think about it.

Long term, ZyAI is building its own AI model — trained on real platform interactions with user consent. The goal is to build a model that deeply understands how ZyAI users actually work.


Model Access

ZyAI gives you access to every major open and closed source model through a single interface. No separate subscriptions, no separate API keys — just pick a model and start.

Every model is accessible via the /new command followed by the model name and version number. Type /new model-name version directly in the chat input to switch instantly.

# Switch to any model
/new gemini-2.5-pro
/new claude-sonnet-4-6
/new gpt-4o
/new deepseek-r1
/new llama-4-maverick

Open source models (Llama, Mistral, Qwen, DeepSeek and more) are available on all plans. Closed source frontier models (GPT, Claude, Gemini Pro) are available on Pro and Ultra plans.


Always Current

The AI landscape moves fast. New models ship every week. Most platforms take weeks or months to integrate them — ZyAI integrates them as they drop.

We monitor every major lab, open source release, and research breakthrough around the clock. When a model worth integrating ships, it gets added — no announcement required, no waiting for an update cycle.

What this means for you: You never have to switch platforms to try the latest model. If it exists and it's good, it's already in ZyAI or it's on the way.

This includes models from Google DeepMind, Anthropic, OpenAI, Meta, Mistral, Cohere, HuggingFace, and independent research releases. Both proprietary APIs and open weights running on inference providers are tracked and integrated.


Privacy & Model

Your Data, Your Control

Your conversations and personal information are stored encrypted. We do not access your data without your explicit permission — and we never will.

We do not sell your data, share it with advertisers, or use it for any purpose other than running the platform.

ZyAI is also developing its own AI model, which will be released as open source when complete. Your data is only used for this if you explicitly opt in — you can revoke this at any time from your account settings and it takes effect immediately.


API Reference

Authentication

The ZyAI developer API uses API key authentication. Keys are prefixed with zyai_ and can be generated from within the app.

Request header
Authorization: Bearer zyai_your_api_key_here

Free tier keys are limited to 100 requests per day. Keys can be created, listed, and revoked via the POST /api/v1/keys endpoint.


POST /api/v1/chat

Send a message and receive an AI response. Supports all available models.

Example request
{ "model": "gemini-2.0-flash", "message": "What is the difference between GPT-4o and Gemini 2.5 Pro?", "stream": false }
model string required
Model identifier. See models section above.
message string required
User message content.
stream boolean optional
Stream response via SSE. Default: false.
system string optional
Custom system prompt.
Example response
{ "response": "GPT-4o and Gemini 2.5 Pro are both frontier models, but...", "model": "gemini-2.0-flash", "tokens": 142 }