Online Unmetered access · No daily caps

Run Claude as much as you want. One key. No limits.

An unmetered gateway to Claude Opus, Sonnet, and Haiku — plus every other frontier model worth using. Drop it into the OpenAI SDK, Claude Code, or curl, and ship.

OpenAI SDK compatible
Anthropic SDK compatible
Claude Code ready

Built for the people Anthropic rate-limits.

If you live in your editor with Claude Code open, or you're shipping a product that hammers the API, you've felt the wall. We took it down.

01 / Core

Truly unmetered Claude

Run Opus on autopilot through Claude Code. Burn through Sonnet in agent loops. Stream Haiku at scale. There's no daily token budget, no request quota, no surprise throttle at 2 a.m.

02 / SDK

Drop-in compatible

Swap one base URL. Your existing OpenAI or Anthropic code keeps working — including streaming, tools, and vision.

03 / Models

Claude first, everything else included

The full Claude lineup at the center. GPT-5.5, Gemini 3.1 Pro, DeepSeek v4 — all behind the same key, when you need them.

04 / Integration

Three minutes to live

If you can set an environment variable, you can use this. No new SDK, no proprietary client, no migration.

Point your code here. That's the whole setup.

Pick the SDK you already use. The base URL is the only thing that changes.

# pip install openai
from openai import OpenAI

client = OpenAI(
    api_key="your-api-key",
    base_url="https://claude.ryzedns.org/v1",
)

response = client.chat.completions.create(
    model="claude-opus-4.7",
    messages=[
        {"role": "user", "content": "Write a haiku about unmetered APIs."},
    ],
    stream=True,
)

for chunk in response:
    if chunk.choices[0].delta.content:
        print(chunk.choices[0].delta.content, end="", flush=True)
# Drop these in your shell rc, or paste them into your terminal.
# Claude Code will route every request through Claude Unlimited.
export ANTHROPIC_BASE_URL=https://claude.ryzedns.org
export ANTHROPIC_API_KEY=your-api-key
export ANTHROPIC_MODEL=claude-opus-4.7

# Then just use Claude Code as normal:
claude
curl https://claude.ryzedns.org/v1/chat/completions \
  -H "Authorization: Bearer your-api-key" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-opus-4.7",
    "messages": [
      { "role": "user", "content": "Hello, Claude." }
    ],
    "stream": true
  }'
Endpoint: https://claude.ryzedns.org/v1

Claude at the core. Everything else within reach.

Every model is unmetered under your key. Switch by changing one string.

gpt-5.5 OpenAI
gemini-3.1-pro-preview Google
deepseek-v4-pro DeepSeek
and others.

Stop watching the meter. Start building.

One key. Every Claude model. No daily caps. Get yours through Telegram in under a minute.

Get an API key