title: AnumaAI
colorFrom: blue
colorTo: purple
sdk: docker
pinned: false
license: mit
Anuma 2API Gateway
A self-hosted gateway that provides OpenAI/Anthropic-compatible APIs backed by Anuma AI accounts. Includes automated account registration via temporary email, account pool management, and a load-balanced API server with automatic failover.
Credits: Temporary email service is powered by ๅฐ่พฃๆค็ไธดๆถ้ฎ็ฎฑ (vip.215.im) โ a fast, reliable temp mail API with generous free tier.
Features
- Batch Account Registration โ Automated signup using temporary email, Privy authentication, and embedded wallet creation. Web UI for monitoring progress.
- OpenAI & Anthropic Compatible โ Works with Claude Code, Cherry Studio, ChatBox, and any client that speaks the OpenAI or Anthropic API protocol.
- Smart Load Balancing โ Round-robin across available accounts. Automatically disables accounts that run out of credits or have expired tokens.
- Token Auto-Refresh โ Proactively refreshes JWT identity tokens before expiry. Background daemon keeps the account pool healthy.
- Streaming Support โ Full SSE streaming for both OpenAI and Anthropic response formats.
- Tool Use โ Translates tool-call requests for Claude Code compatibility.
- SOCKS5 Proxy โ Optional proxy support for environments that need it.
Architecture
โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโ
โ AI Client โโโโโโถโ api_server.py โโโโโโถโ Anuma API โ
โ (Claude Code,โ โ (FastAPI :7895) โ โ portal.anumaโ
โ Cherry St.) โ โโโโโโโโโโฌโโโโโโโโโโ โโโโโโโโโโโโโโโ
โโโโโโโโโโโโโโโโ โ
โ reads
โผ
โโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ
โ Web UI โโโโโโถโ privy_manager.py โ
โ (Flask) โ โ (Flask :7894) โ
โโโโโโโโโโโโโโโโ โโโโโโโโโโฌโโโโโโโโโโ
โ
โผ
โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ
โ anuma_client.py โโโโโโถโ ๅฐ่พฃๆค ไธดๆถ้ฎ็ฎฑ โ
โ (SDK) โ โ (vip.215.im) โ
โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ
Project Structure
โโโ src/
โ โโโ config.py # Configuration from environment variables
โ โโโ anuma_client.py # SDK: Privy auth, Anuma chat, temp mail
โ โโโ privy_manager.py # Web UI + batch registration engine
โ โโโ api_server.py # FastAPI gateway (OpenAI/Anthropic)
โโโ templates/
โ โโโ index.html # Web dashboard
โโโ docs/
โ โโโ yyds.txt # Mail API reference
โโโ docker-compose.yml
โโโ Dockerfile
โโโ requirements.txt
โโโ .env.example
โโโ LICENSE
Quick Start
1. Prerequisites
- Python 3.10+
- A mail API key from ๅฐ่พฃๆคไธดๆถ้ฎ็ฎฑ
- Optional: SOCKS5 proxy if Anuma is blocked in your region
2. Configuration
cp .env.example .env
# Edit .env and fill in your MAIL_API_KEY
Required: MAIL_API_KEY โ your temp mail API key from vip.215.im.
Optional: SOCKS5_PROXY โ proxy string for API requests.
3. Install
pip install -r requirements.txt
4. Start the Registration Manager (Web UI)
python3 src/privy_manager.py
Open http://localhost:7894 โ configure registration count, concurrency, and click "Start" to batch-register accounts.
5. Start the API Gateway
python3 src/api_server.py
The gateway runs on http://localhost:7895/v1 by default (configurable via API_PORT).
6. Connect Your Client
Claude Code:
export ANTHROPIC_BASE_URL=http://localhost:7895/v1
export ANTHROPIC_API_KEY=sk-no-auth-needed
claude
Cherry Studio: Add an OpenAI-compatible provider with:
- Base URL:
http://localhost:7895/v1 - API Key: any value (not validated)
API Endpoints
GET /v1/models
Returns available model list.
POST /v1/chat/completions
OpenAI-compatible chat completions. Supports streaming.
POST /v1/messages
Anthropic-compatible messages endpoint. Supports streaming and tool use.
Model Mapping
| Client model name | Anuma upstream |
|---|---|
gpt-5.4 |
openai/gpt-5.4 |
gpt-4 |
openai/gpt-4 |
claude-opus / claude-3-7 |
anthropic/claude-opus-4-7 |
claude-sonnet |
anthropic/claude-sonnet-4-6 |
Docker Deployment
# Build and start
docker compose up -d
# View logs
docker compose logs -f api-server
Both services share a SQLite database mounted at ./data. Create a .env file before starting.
Environment Variables
A complete reference is in .env.example.
| Variable | Required | Default | Description |
|---|---|---|---|
MAIL_API_KEY |
Yes | โ | Mail API key from vip.215.im |
MAIL_API_BASE_URL |
No | https://maliapi.215.im/v1 |
Custom mail API URL |
SOCKS5_PROXY |
No | โ | SOCKS5 proxy for upstream requests |
DB_PATH |
No | ./privy_manager.db |
SQLite database path |
MANAGER_PORT |
No | 7894 |
Web UI port |
API_PORT |
No | 7895 |
API gateway port |
API_HOST |
No | 0.0.0.0 |
API bind address |
DEFAULT_TOTAL |
No | 10 |
Default registration batch size |
DEFAULT_CONCURRENCY |
No | 3 |
Default concurrent threads |
Notes
- Recommended concurrency: 2-3. Higher values may trigger rate limits or IP blocks.
- The gateway automatically disables accounts with zero credits or expired tokens.
- Token refresh happens both proactively (before requests) and via a background daemon (every 10 minutes).
- The
identity_tokenis session-critical โ the client handles complex token exchange logic internally.