Zorveus Documentation
Zorveus is an AI wallet, billing layer, and multi-provider gateway designed for two main developer workflows.
Zorveus sits between your application and model providers (OpenAI, Anthropic, Gemini, OpenRouter), giving you unified AI inference, spending controls, and flexible wallet billing.
Select Your Developer Path
Startups & AI Product Builders
Build AI products funded by your organization. Add multi-provider inference, meter end-user consumption, set per-user credit limits, and control AI spend through one API.
Third-Party App Developers
Let users pay for AI with their own Zorveus wallets. Integrate OAuth 2.0 with PKCE so users authorize your app to charge their personal or company AI wallets directly.
30-Second Quickstart
Zorveus is 100% compatible with the official OpenAI SDKs. Simply point the SDK base URL to https://api.zorveus.com/v1 and use your Zorveus inference key (zrv_...).
curl https://api.zorveus.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer zrv_your_inference_key" \
-d '{
"model": "openai/gpt-4.1-mini",
"messages": [
{"role": "user", "content": "Explain quantum computing in one sentence."}
]
}'Two-Minute Core Recipes
Route between OpenAI, Anthropic, Google Gemini, and open weights without changing your SDK setup:
# Switch models dynamically using your single Zorveus Inference Key
response = client.chat.completions.create(
model="anthropic/claude-3-5-sonnet-20241022", # Or "google/gemini-1.5-pro", "openai/gpt-4.1-mini"
messages=[
{"role": "user", "content": "Summarize this document."}
],
)Production Base URLs
| Surface | Production Endpoint | Usage |
|---|---|---|
| Inference Gateway | https://api.zorveus.com/v1 | OpenAI-compatible inference (/chat/completions, /models, etc.) |
| Product & Management API | https://api.zorveus.com | Programmatic management with Service Key (zrv_service_...) |
| Developer Dashboard | https://app.zorveus.com | Web UI for workspace management, keys, wallets, and OAuth consent |
Explore by Topic
Inference Capabilities
Chat completions, streaming, tool calling, responses API, embeddings, and model discovery.
Product Users & Attribution
Track end-user AI usage with inline metadata and apply custom credit grants.
Bring Your Own Key (BYOK)
Route requests through your own encrypted OpenAI, Anthropic, Gemini, or OpenRouter keys.
OAuth PKCE Integration
Build connectable applications that charge user-selected funding organizations.
Check our Model Discovery Guide for live available model IDs, or visit our Troubleshooting Guide if you experience connection errors.