AI traffic gateway
AISIX AI Gateway
Put one stable API contract in front of your AI providers
AISIX AI Gateway is an open source, Rust-native gateway for LLM and AI-agent traffic. It runs as a single static binary and lets applications call stable model aliases while the AI platform team controls provider credentials, routing, failover, budgets, rate limits, caching, guardrails, and observability.
curl -sS \
http://127.0.0.1:3000/v1/chat/completions \
-H "Authorization: Bearer YOUR_CALLER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-4o-prod",
"messages": [
{"role": "user", "content": "Hello"}
]
}'How requests flow
Applications call AISIX first. AISIX authenticates the caller, resolves the model alias, applies policy, and forwards the request to the selected provider.
AISIX keeps client traffic on one API shape while resolving the provider-side target for each request.
What changes when AI traffic goes through AISIX
Application teams keep calling a familiar API. AI platform teams move provider credentials, model aliases, routing, budgets, and policy into one operator-managed gateway.
Why AISIX if you already use APISIX or API7 Gateway?
APISIX and API7 Gateway can add AI behavior to regular gateway routes through AI plugins. That path fits teams whose main workload is API traffic and whose AI calls are part of a broader API gateway deployment.
AISIX is for teams whose main workload is AI traffic. It manages provider keys, model aliases, caller API keys, budgets, routing, policy, and AI usage telemetry as first-class resources instead of route-level plugin settings.
Read next
From First Request to Production
Start with one local request, then choose the endpoint, model, routing, controls, and production guidance you need next.