Zorveus LogoZorveusDOCS

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.

Inference Key TesterInteractive
Paste your Zorveus key to dynamically update all code snippets below.

Select Your Developer Path


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

SurfaceProduction EndpointUsage
Inference Gatewayhttps://api.zorveus.com/v1OpenAI-compatible inference (/chat/completions, /models, etc.)
Product & Management APIhttps://api.zorveus.comProgrammatic management with Service Key (zrv_service_...)
Developer Dashboardhttps://app.zorveus.comWeb UI for workspace management, keys, wallets, and OAuth consent

Explore by Topic

Need Help or Model Discovery?

Check our Model Discovery Guide for live available model IDs, or visit our Troubleshooting Guide if you experience connection errors.

Was this page helpful?
Edit this page on GitHub

On this page