Claude Code is one of the best AI coding tools today, but official account rate limits frustrate heavy users — you hit a rate limit mid-task and wait minutes to continue. This guide walks you through connecting via Zivv to eliminate limits entirely, in about 3 minutes.
Why Do You Get Rate Limited?
Official Claude enforces RPM (requests per minute) and TPM (tokens per minute) limits per account. When Claude Code does large refactors or reads multi-file context, a single session can max out the quota and trigger limits repeatedly. Zivv smooths this out via account pool rotation, fully transparent to you.
Quick Start (3 Minutes)
Step 1: Sign Up and Top Up
- Visit zivv.pro
- Register with your email
- Top up from as little as ¥10
Step 2: Create an API Key
- Log in, go to the "API Key" page
- Create a new key (any name)
- Copy the key value in
sk-xxxformat and store it safely
Step 3: Configure Claude Code
Claude Code switches backends via two environment variables. Point them at Zivv.
Set the environment variables, then launch Claude Code:
export ANTHROPIC_BASE_URL=https://zivv.pro
export ANTHROPIC_AUTH_TOKEN=sk-your-key-here
claudeWindows PowerShell:
$env:ANTHROPIC_BASE_URL="https://zivv.pro"
$env:ANTHROPIC_AUTH_TOKEN="sk-your-key-here"
claudeTo persist, add the first two lines to ~/.bashrc / ~/.zshrc (or system environment variables on Windows).
Step 4: Configure Codex (Optional)
Codex uses the OpenAI protocol, which Zivv also supports. Set the environment variables, then launch:
export OPENAI_BASE_URL=https://zivv.pro/v1
export OPENAI_API_KEY=sk-your-key-here
codexWindows PowerShell:
$env:OPENAI_BASE_URL="https://zivv.pro/v1"
$env:OPENAI_API_KEY="sk-your-key-here"
codexThe same Zivv key drives both Claude Code and Codex — no separate signup needed.
Step 5: Verify
Type any prompt in your editor; a normal response means you're connected. From the CLI:
claude "Explain closures in one sentence"FAQ
Q: Could my data leak? A: No. Zivv does not store prompt or response bodies — only usage for billing. All requests are encrypted in transit.
Q: Will the account pool run out and cut off service? A: No. Continuously replenishing accounts is core to Zivv's operation, with dedicated monitoring of pool size and health.
Q: How do I switch back to official? A: Remove or restore those two environment variables — instant switch, no interference.
Q: Which models are supported? A: The full Anthropic lineup (Opus / Sonnet / Haiku) plus OpenAI and Gemini — all callable with one key.
Going Further: Full Config & Troubleshooting
For detailed options (model mapping, timeouts, proxy, team key distribution) and common error fixes, see the Docs. For team onboarding, unified billing, and a usage dashboard, see Teams.