Skip to content

Gatewyse

One API endpoint. 28 AI providers. 10 routing strategies. Full control over cost, security, and observability.

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 →


Drop-in compatible

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 rules
response = client.chat.completions.create(
model="gpt-4",
messages=[{"role": "user", "content": "Hello!"}]
)

Explore the docs