Drop in OriginalPoint as your AI gateway. Get instant access to GPT-5, Claude Opus 4.5, Gemini 3 Pro, and 13 more — with smart routing that auto-selects the best model for each request.
No credit card required · OpenAI-compatible · Sub-50ms routing
from openai import OpenAI # Drop-in replacement — no code changes needed client = OpenAI( api_key="op_your_key_here", base_url="https://api.originalpoint.ai/v1" ) response = client.chat.completions.create( model="auto", # Smart routing picks best model messages=[{"role": "user", "content": "Hello!"}] ) print(response.choices[0].message.content)
import OpenAI from 'openai'; // Same SDK, new base URL — that's it const client = new OpenAI({ apiKey: 'op_your_key_here', baseURL: 'https://api.originalpoint.ai/v1' }); const response = await client.chat.completions.create({ model: 'claude-opus-4.5', messages: [{role: 'user', content: 'Hello!'}] }); console.log(response.choices[0].message.content);
curl https://api.originalpoint.ai/v1/chat/completions \ -H "Authorization: Bearer op_your_key_here" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-5", "messages": [ {"role": "user", "content": "Hello!"} ], "stream": true }' # ← Works with any OpenAI-compatible client # Use "auto" to let smart routing decide
OriginalPoint's routing engine analyzes your request in real-time and selects the optimal model based on cost, latency, and capability — no manual model selection needed.
# Use "auto" — we handle the rest response = client.chat.completions.create( model="auto", messages=[...], extra_body={ "routing": "cost" # or "latency" | "reliability" } ) # Response includes routing metadata print(response.model) # → "gpt-5-mini" print(response.usage.cost_usd) # → 0.000023
BYOK lets you connect your existing OpenAI, Anthropic, or Google API keys. OriginalPoint routes through your credentials — you pay provider rates directly, we charge only a small routing fee.
Real-time dashboards show you exactly what you're spending, on which models, for which use cases. Set budgets, alerts, and per-project cost caps.
SOC 2 Type II compliant. Your prompts and responses are never stored or used for training. Enterprise plans include SSO, audit logs, and dedicated infrastructure.
Switch between models with a single parameter change. No new SDKs, no new auth flows.
Drag the slider to estimate your monthly costs across tiers.
Estimates based on average input/output ratio. See full pricing →