Live · 3 AI Providers · OpenAI Compatible

Your Own AI Gateway
in Minutes.

Drop-in OpenAI replacement with smart provider routing, automatic failover, rate limiting, and a beautiful dashboard. Self-host on Vercel for free.

Get Started Free Read the Docs
No vendor lock-inSelf-hosted & privateOpenAI SDK compatible3 providers, 1 keyFree to deploy on VercelSupabase PostgreSQL
Quick Start
import OpenAI from 'openai'

const client = new OpenAI({
  apiKey: 'afr_your_key_here',         // Get this from the dashboard
  baseURL: 'https://api.aeferalow.my.id/v1', // ← only change needed
})

const response = await client.chat.completions.create({
  model: 'gpt-4o-mini',
  messages: [{ role: 'user', content: 'Hello!' }],
  stream: true,
})

for await (const chunk of response) {
  process.stdout.write(chunk.choices[0]?.delta?.content ?? '')
}
Features

Everything you need

Smart Router

Round-robin, random, or priority routing with circuit breaker. Auto-failover to next provider instantly.

Streaming SSE

Full streaming response support. Works with any OpenAI SDK — zero config changes needed.

Secure by Default

API keys hashed with SHA-256. Provider keys never exposed. Full audit trail on every request.

Usage Dashboard

Real-time token usage, request history, quota tracking, and visual analytics charts.

Rate Limiting

Per-key and per-IP rate limits. Anti-spam and anti-flood protection built in at the gateway.

OpenAI Compatible

Drop-in replacement for the OpenAI API. Change one URL and you're done. No SDK changes.

Ready to get started?

Deploy your AI API Gateway in under 5 minutes.

Create Account Try Playground