All systems operational — powered by Kimi · DeepSeek · GLM
One API.
Every AI.
Connect once, get access to a smart router that judges your request and sends it to the best AI — Kimi, DeepSeek, or GLM — automatically, at the lowest possible cost.
OpenAI Compatible
Works with Cursor
Works with Hermes
Claude Code ready
Streaming support
Spend limits
Start with the API
Why Diva Router?
One key. Smart routing. Lowest cost. No lock-in.
🧠
Smart Judge
Every request is classified — simple chat goes cheap, hard reasoning goes strong. You never overpay.
🔀
Auto Failover
If one provider is down, requests instantly route to the next available model. Zero downtime.
🔑
Your Own Keys
Each customer gets a virtual key with a spend budget. Provider keys stay private to you.
💸
Cheapest Lane
Free GLM-Flash for simple tasks, DeepSeek V4 Flash for chat, Kimi for long context. Auto-selected.
📡
OpenAI Protocol
Drop-in replacement for any app using the OpenAI SDK. Change one URL, keep your code.
📊
Usage Dashboard
See every request, token count, and cost per customer. Set hard budgets to stop runaway bills.
Model Lanes
Pick a lane, or use diva-smart and let the judge decide.
diva-smart RECOMMENDED
Judge auto-selects the cheapest capable model for each request
auto · cheapest
diva-chat
General chat, Q&A — DeepSeek V4 Flash (cheap) or GLM Flash (free)
low cost
diva-long
Long documents, 1M context — Kimi K3 / K2.6
1M context
diva-reason
Math, logic, coding — Kimi K2.7 Code / GLM-5.2
strong
diva-vision
Image understanding — GLM-4.6V / GLM-5V
multimodal
diva-free
Free lane — GLM-4.7-Flash / GLM-4.5-Flash ($0)
$0 cost
Choose Your Plan
Subscription, token packs, or pay-as-you-go — pick what fits. No hidden costs.
📅 Subscription — daily token quota
| Plan | Price | Daily token quota | Access |
| Free | $0 | 100K tokens/day | diva-free lane |
| Starter | $9/mo | 1M tokens/day | + diva-chat |
| Pro | $29/mo | 5M tokens/day | + diva-long (capped) |
| Business | $99/mo | 25M tokens/day | + flagship lanes |
| Enterprise | $299/mo | 100M tokens/day | all lanes, custom |
🎟️ Token Packs — buy tokens, use anytime
| Pack | Price | Tokens |
| Micro | $2 | 1M tokens |
| Small | $15 | 10M tokens |
| Medium | $60 | 50M tokens |
| Large | $250 | 250M tokens |
⚡ Pay-As-You-Go — only pay for what you use
# No subscription. No expiry. Top up and go.
Base URL = https://ai.divadivya.cloud/v1
Model = diva-smart
# You are billed per token used, at pack rates.
Quickstart
Works with any OpenAI-compatible client. Change one URL, keep everything else.
1
Get your API key — contact us for a key + your spend budget.
2
Point your app at the router:
BASE_URL = https://ai.divadivya.cloud/v1
API_KEY = sk-customer-xxxx
MODEL = diva-smart
cURL
curl https://ai.divadivya.cloud/v1/chat/completions \
-H "Authorization: Bearer sk-customer-xxxx" \
-H "Content-Type: application/json" \
-d '{"model":"diva-smart","messages":[{"role":"user","content":"Hello!"}]}'
Python (OpenAI SDK)
from openai import OpenAI
client = OpenAI(base_url="https://ai.divadivya.cloud/v1", api_key="sk-customer-xxxx")
r = client.chat.completions.create(
model="diva-smart",
messages=[{"role": "user", "content": "Explain quantum computing"}]
)
print(r.choices[0].message.content)
Cursor IDE
Settings → Models → OpenAI API Key:
Base URL: https://ai.divadivya.cloud/v1
API Key: sk-customer-xxxx
Model: diva-smart
Usage & Limits
Fair use, transparent metering.
⏱️ Rate limits
Default: 5 req/s per key, 100k tokens/min. Raise on request.
💰 Budgets
Hard spend cap per key. Requests stop automatically at the limit.
📈 Analytics
Per-key dashboard: requests, tokens, cost, latency. Exportable.
🔒 Privacy
Your prompts are not used for training. Provider keys never exposed.