Quick Start
Add a provider, create an API key, and make your first request in under 5 minutes. Start here →
Quick Start
Add a provider, create an API key, and make your first request in under 5 minutes. Start here →
28 Providers
OpenAI, Anthropic, Gemini, Groq, Mistral, DeepSeek, Ollama, vLLM, and 20 more — all behind one API. See all providers →
10 Routing Strategies
Priority, round-robin, weighted, cost-optimized, least-latency, free-tier-first, failover, and more. Learn routing →
Enterprise Security
Multi-tenant RBAC, prompt injection guards, PII detection, budget enforcement, and immutable audit logs. Admin guide →
Point any OpenAI SDK at Gatewyse. No code changes needed.
from openai import OpenAI
client = OpenAI( api_key="your-gatewyse-key", base_url="https://gateway.example.com/v1")
# Gatewyse routes this to the best provider# based on your routing rulesresponse = client.chat.completions.create( model="gpt-4", messages=[{"role": "user", "content": "Hello!"}])