The technology behind the fastest, most secure AI Gateway
Edgee isn’t just another proxy. It’s purpose-built infrastructure for production AI workloads, combining edge computing, intelligent routing, and zero-trust security in one platform.
With a single Edgee API key, you get instant access to every supported model; OpenAI, Anthropic, Google, Mistral, and more. No need to manage multiple provider accounts or juggle API keys:
Copy
Ask AI
const edgee = new Edgee(process.env.EDGEE_API_KEY);// Access any model with the same keyawait edgee.send({ model: 'gpt-4o', input: 'Hello, world!' });await edgee.send({ model: 'claude-sonnet-4.5', input: 'Hello, world!' });await edgee.send({ model: 'gemini-3-pro', input: 'Hello, world!' });
Need more control? Use your existing provider API keys alongside Edgee. This gives you direct billing relationships, access to custom fine-tuned models, and the ability to use provider-specific features:
Copy
Ask AI
const edgee = new Edgee({ apiKey: process.env.EDGEE_API_KEY, providers: { openai: { apiKey: process.env.OPENAI_API_KEY }, anthropic: { apiKey: process.env.ANTHROPIC_API_KEY }, },});// Requests to OpenAI/Anthropic use YOUR keys// Other providers fall back to Edgee's unified access
You can mix both approaches—use Edgee’s unified access for some providers and your own keys for others.