Skip to content

Gatewyse

One API endpoint. 49 AI providers. 11 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 →

49 Providers

OpenAI, Anthropic, Gemini, Groq, Mistral, DeepSeek, Voyage, Deepgram, Bedrock, Ollama, vLLM, and 38 more — all behind one API. See all providers →

11 Routing Strategies

Priority, round-robin, weighted, least-cost, least-latency, free-tier-first, failover, review-panel, and more. Learn routing →

Enterprise Security

Scoped 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