Completely Free
Runs entirely on Cloudflare Workers' free plan. No hidden costs, no subscriptions.
Aggregate multiple AI service providers behind a unified OpenAI-compatible API. Overcome rate limits, maximize free quotas, and simplify your AI integrations.
Deploy to Cloudflare Workers in under 60 seconds. No complex infrastructure setup required.
# Clone and deploy
git clone https://github.com/loadchange/apex-ai-proxy.git
cd apex-ai-proxy
pnpm install
pnpm run deploy
Automatically routes requests to available providers, ensuring maximum uptime and performance.
// Configure multiple providers for the same model
const modelProviderConfig = {
'gpt-4o-mini': {
providers: [
{
provider: 'azure',
model: 'gpt-4o-mini',
},
{
provider: 'deepseek',
model: 'deepseek-chat',
}
],
},
};
Works seamlessly with existing OpenAI client code. No changes required.
from openai import OpenAI
# Just change the base_url - everything else stays the same
client = OpenAI(
base_url="https://your-proxy.workers.dev/v1",
api_key="your-configured-api-key"
)
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": "Hello!"}]
)
Enterprise-grade OpenAI models with enhanced security and compliance.
High-performance language models with competitive pricing and capabilities.
Alibaba Cloud's comprehensive AI model platform with global reach.
Fast and reliable inference for popular open-source AI models.
/v1/responses
API Support We now support the latest OpenAI /v1/responses
-style API, ensuring compatibility with next-generation OpenAI tools and clients.
Complete support for Anthropic's Messages API with automatic protocol conversion.
Join the community to ask questions, share ideas, and get help.
Join Discussion →Deploy your personal AI gateway in under 60 seconds and start aggregating multiple AI providers today.