AI GATEWAY
> Universal LLM API Forwarding Gateway
SYS aigateway.pro ALT aigateway.hk PROTO OpenAI + Anthropic STATUS ● BUILDING
Universal LLM API Gateway
One endpoint. All frontier models. Cheaper than official pricing. No per-platform billing. Switch models with a single variable.
$ curl https://api.aigateway.pro/v1/chat/completions
COMING SOON
════════════════════════════════════════════════════════════════
// Python — OpenAI Compatible
example.pyfrom openai import OpenAI client = OpenAI( base_url="https://api.aigateway.pro/v1", api_key="your-api-key", ) resp = client.chat.completions.create( model="claude-sonnet-4-6-20260318", messages=[{ "role": "user", "content": "Hello!" }] ) print(resp.choices[0].message.content)
// Terminal — Tool Config
shell# ── Claude Code ── $ export ANTHROPIC_BASE_URL=\ https://api.aigateway.pro $ export ANTHROPIC_API_KEY=your-key $ claude # ── OpenCode ── $ cat ~/.config/opencode/config.json { "provider": "anthropic", "baseURL": "https://api.aigateway.pro", "model": "claude-sonnet-4-6-20260318" } # Switch model → change one line $ model="gpt-5.4" # done.
────────────────────────────────────────────────────────────────
// Supported AI Coding Tools
🤖
Claude Code
Anthropic CLI
OpenCode
Terminal IDE
Cursor
AI-first IDE
🌊
Windsurf
Codeium IDE
🔗
Cline
VS Code Agent
Continue
Open Source
🛠
Aider
Git + AI
🧩
Custom API
Any Client
// Available Models
Model Provider Status
internal-testingAI Gateway[LIVE]
claude-opus-4-6-20260318Anthropic[SOON]
claude-sonnet-4-6-20260318Anthropic[SOON]
gpt-5.4OpenAI[SOON]
gpt-5.3-codexOpenAI[SOON]
o3OpenAI[SOON]
o4-miniOpenAI[SOON]
gemini-3.1-proGoogle[SOON]
gemini-3-flashGoogle[SOON]
grok-4.2xAI[SOON]
deepseek-v3-0324DeepSeek[SOON]
deepseek-r1DeepSeek[SOON]
glm-5Zhipu AI[SOON]
kimi-k2.5Moonshot[SOON]
minimax-text-01MiniMax[SOON]
...moreMulti-provider[ ++ ]
────────────────────────────────────────────────────────────────
// How It Works
① Your App / Tool
Claude Code
Cursor / OpenCode
Aider / Custom
② AI Gateway
api.aigateway.pro
Routing · Auth · Balance
③ LLM Providers
OpenAI Anthropic Google DeepSeek xAI 更多
// Core Features
  • OpenAI-compatible API format
  • Anthropic-native format support
  • All frontier models, one endpoint
  • Cheaper than official pricing
  • No per-platform billing
  • Switch models with one variable
  • Sub-100ms routing overhead
  • Dashboard & analytics (coming)
  • Team management (coming)
// Endpoints
PRIMARY  → https://api.aigateway.pro
MIRROR   → https://api.aigateway.hk
WEBSITE  → aigateway.pro | aigateway.hk
OpenAI path: /v1/chat/completions
Anthropic path: /v1/messages
════════════════════════════════════════════════════════════════
// Quick Start — 3 Steps
01
Get API Key
Register at aigateway.pro and obtain your API key.
sk-ag-xxxxxxxxxxxx
02
Set Endpoint
Point your tool or SDK to AI Gateway.
export OPENAI_BASE_URL=\ https://api.aigateway.pro/v1
03
Use Any Model
Switch freely between all supported models.
$ cursor . # ✓ $ claude # ✓ $ aider # ✓ $ opencode # ✓
// Other Products by AI Gateway Limited