One gateway, every AI provider

Every model.
One key. Full speed.

Your coding agents deserve better than manual API key juggling. MAVIS handles the plumbing so you can focus on what ships.

Provider Routing

Smart failover and traffic distribution across providers with unified model aliases.

Unified Access

One API key and endpoint for every supported model — no per-provider credentials to manage.

Usage Visibility

Track latency, volume, and operational metrics for every request path.

Operational Stability

Production-ready gateway patterns for retries, fallback, and controlled rollouts.

Works with every agentic coding tool

Claude CodeCodex CLIGeminiDroidRoo CodeKilo CodeAmpWindsurfOpencodeVS Code

Simple, transparent pricing

Every plan includes access to all providers — Claude, GPT, Gemini, and more — through a single API endpoint. Budget refreshes automatically each window.

LITE
190.000/mo
$50 / 5h

Matches Claude Pro — 25% less

  • All AI models included
  • ~50 prompts / 5hr window
  • ~400 prompts / week
Get Started
PLUS
390.000/mo
$50 / 2h

3× Claude Pro capacity

  • All AI models included
  • ~50 prompts / 2hr window
  • ~1,000 prompts / week
Get Started
Popular
PRO
690.000/mo
$100 / 2h

5× Claude Max capacity, save 25%

  • All AI models included
  • ~100 prompts / 2hr window
  • ~2,000 prompts / week
Get Started
MAX
1.390.000/mo
$250 / 2h

Rivals Claude Max 20x — save $50/mo

  • All AI models included
  • ~250 prompts / 2hr window
  • ~5,000 prompts / week
Get Started
KUSTOMIZEFlexible

Need custom budgets, dedicated infrastructure, SLA guarantees, or volume pricing? We'll build a plan that fits.

Contact Admin

* Prompt estimates based on real-world usage data from Anthropic. Actual counts vary by model and task complexity.
Claude comparison: Pro ~500.000₫/mo, Max 5x ~2.500.000₫/mo, Max 20x ~5.000.000₫/mo.

Quickstart in 2 minutes

Drop in as a Claude-compatible endpoint — works with any tool that supports the Messages API.

export ANTHROPIC_API_KEY="mavis-xxxx..."
export ANTHROPIC_BASE_URL="https://mavis.io.vn"

curl $ANTHROPIC_BASE_URL/v1/messages \
  -H "x-api-key: $ANTHROPIC_API_KEY" \
  -H "anthropic-version: 2023-06-01" \
  -H "content-type: application/json" \
  -d '{
    "model": "claude-opus-4.6",
    "max_tokens": 1024,
    "messages": [{ "role": "user", "content": "Hello" }]
  }'