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.
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.
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.
Swap one base URL. Your existing OpenAI or Anthropic code keeps working — including streaming, tools, and vision.
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.
If you can set an environment variable, you can use this. No new SDK, no proprietary client, no migration.
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 }'
Every model is unmetered under your key. Switch by changing one string.
One key. Every Claude model. No daily caps. Get yours through Telegram in under a minute.
Get an API key